Skip to content

Commit

Permalink
feat: updated toolchains
Browse files Browse the repository at this point in the history
Signed-off-by: AlexsJones <[email protected]>
  • Loading branch information
AlexsJones committed Jan 6, 2025
1 parent acfd572 commit 3dce044
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,18 @@ defaults:

jobs:
release:
name: release
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [stable-x86_64-unknown-linux-gnu]
steps:
- uses: actions/checkout@master
- run: rustup update
- run: cargo build --release
- run: rustup toolchain install ${{ matrix.target }}
- name: Log in to Buf registry
env:
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}
run: |
cargo login --registry buf "Bearer $BUF_TOKEN"
- run: cargo +${{ matrix.target }} build --release

0 comments on commit 3dce044

Please sign in to comment.