Skip to content

Commit

Permalink
Let's try all the platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mmastrac committed Jun 12, 2020
1 parent b34b38f commit 4e3a9f6
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./target/arm-unknown-linux-musleabi/release/stylus
asset_name: stylus-musleabi
asset_name: stylus-linux-musleabi
asset_content_type: application/binary
- name: Upload Release Asset
id: upload-release-asset-musleabihf
Expand All @@ -48,5 +48,25 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./target/arm-unknown-linux-musleabihf/release/stylus
asset_name: stylus-musleabihf
asset_name: stylus-linux-musleabihf
asset_content_type: application/binary
- name: Upload Release Asset
id: upload-release-asset-aarch64
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./target/aarch64-unknown-linux-musl/release/stylus
asset_name: stylus-linux-aarch64
asset_content_type: application/binary
- name: Upload Release Asset
id: upload-release-asset-x86_64
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./target/x86_64-unknown-linux-musl/release/stylus
asset_name: stylus-linux-x86_64
asset_content_type: application/binary

0 comments on commit 4e3a9f6

Please sign in to comment.