Skip to content

Commit 48ebbd8

Browse files
authored
ci: fix binaries build (#37)
1 parent aeb1d08 commit 48ebbd8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
build-binaries:
185185
name: Build Release Binaries
186186
runs-on: ${{ matrix.os }}
187-
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
187+
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/temp'))
188188

189189
strategy:
190190
matrix:
@@ -205,6 +205,12 @@ jobs:
205205
with:
206206
targets: ${{ matrix.target }}
207207

208+
- name: Install protoc
209+
uses: arduino/setup-protoc@v3
210+
with:
211+
version: '25.x'
212+
repo-token: ${{ secrets.GITHUB_TOKEN }}
213+
208214
- name: Cache dependencies
209215
uses: actions/cache@v4
210216
with:

0 commit comments

Comments
 (0)