Skip to content

Commit

Permalink
Fix broken release workflow (#1308)
Browse files Browse the repository at this point in the history
The [release workflow](https://github.com/phylum-dev/cli/actions/workflows/release.yml) was broken...since [the Deno version bump](ae113fa). This PR fixes the two failing jobs.
  • Loading branch information
maxrake authored Dec 2, 2023
1 parent 60f6c7b commit 6897fef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: |
rustup toolchain install stable --profile minimal
Expand Down Expand Up @@ -63,7 +66,7 @@ jobs:

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler
run: sudo apt update && sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: |
Expand Down

0 comments on commit 6897fef

Please sign in to comment.