From 1d9e2bdd78708021833d0d9032f73abcf788fe22 Mon Sep 17 00:00:00 2001 From: Charles Coggins Date: Mon, 2 Mar 2026 15:56:11 -0600 Subject: [PATCH] Update apt-get --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01e66c4d5..09ea7d051 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ on: branches: - main tags: - - '*' + - "*" jobs: Generate-Completion-Files: @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v6 - name: Install protoc - run: sudo apt-get install -y protobuf-compiler + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - name: Install Rust toolchain run: | @@ -94,7 +94,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install host dependencies - run: sudo apt-get install -yq zip + run: sudo apt-get update && sudo apt-get install -yq zip - name: Checkout the repo uses: actions/checkout@v6 @@ -165,7 +165,6 @@ jobs: if-no-files-found: error retention-days: 7 - Release: name: Create release from tag needs: Build-Release-Artifacts