Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! gha: Add release tooling for Rust …
Browse files Browse the repository at this point in the history
…artifacts
  • Loading branch information
cdecker committed Nov 7, 2023
1 parent f632625 commit 7e41995
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,20 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
steps:
- name: Install dependencies (Ubuntu)
run: |
sudo apt-get update -qqq
sudo apt-get install -yqq python3-dev
if: ${{ matrix.runner == 'ubuntu-20.04' }}
- name: Install dependencies (MacOS)
run: |
brew install python3.10
if: ${{ matrix.runner == 'ubuntu-20.04' }}
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
version: "23.2" # Fixed since we mount the path below
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down

0 comments on commit 7e41995

Please sign in to comment.