Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
CI: Install build deps before publish (#7216)
Browse files Browse the repository at this point in the history
#### Problem

The publish step can fail because the protobuf compiler is missing.

#### Summary of changes

Install build deps during publish step
  • Loading branch information
joncinque authored Aug 28, 2024
1 parent f33d98d commit 66e08db
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ jobs:
with:
toolchain: ${{ env.RUST_STABLE }}

- name: Install dependencies
run: ./ci/install-build-deps.sh

- uses: actions/cache@v4
with:
path: |
Expand Down

0 comments on commit 66e08db

Please sign in to comment.