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