Skip to content

Commit

Permalink
add apple-darwin and pc-windows release targets
Browse files Browse the repository at this point in the history
  • Loading branch information
saeidakbari committed Apr 7, 2024
1 parent b6c134d commit ea16cf4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,21 @@ jobs:

upload-assets:
needs: create-release
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: repust
target: ${{ matrix.target }}
zip: windows
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ea16cf4

Please sign in to comment.