Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ishowta committed Mar 10, 2024
1 parent 682c65c commit 4284b23
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@ on:

jobs:
release:
name: Release
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl]
steps:
- uses: actions/checkout@master
- name: Compile
id: compile
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: x86_64-unknown-linux-musl
RUSTTARGET: ${{ matrix.target }}
UPLOAD_MODE: none
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 4284b23

Please sign in to comment.