We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 787667f commit 13fef43Copy full SHA for 13fef43
1 file changed
.github/workflows/release.yml
@@ -10,7 +10,7 @@ on:
10
branches:
11
- main
12
tags:
13
- - '*'
+ - "*"
14
15
jobs:
16
Generate-Completion-Files:
@@ -21,7 +21,7 @@ jobs:
21
uses: actions/checkout@v6
22
23
- name: Install protoc
24
- run: sudo apt-get install -y protobuf-compiler
+ run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
25
26
- name: Install Rust toolchain
27
run: |
@@ -94,7 +94,7 @@ jobs:
94
runs-on: ubuntu-latest
95
steps:
96
- name: Install host dependencies
97
- run: sudo apt-get install -yq zip
+ run: sudo apt-get update && sudo apt-get install -yq zip
98
99
- name: Checkout the repo
100
@@ -165,7 +165,6 @@ jobs:
165
if-no-files-found: error
166
retention-days: 7
167
168
-
169
Release:
170
name: Create release from tag
171
needs: Build-Release-Artifacts
0 commit comments