Skip to content

Commit

Permalink
Actually include ARM64 binaries in a release (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjam authored Apr 9, 2023
1 parent 7fdfeb4 commit f60b238
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ jobs:
asset_path: ./bin/release/aws_finder-darwin-amd64
asset_name: aws_finder-darwin-amd64
asset_content_type: application/octet-stream
- uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/release/aws_finder-darwin-arm64
asset_name: aws_finder-darwin-amd64
asset_content_type: application/octet-stream
- uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -48,6 +56,14 @@ jobs:
asset_path: ./bin/release/aws_finder-linux-amd64
asset_name: aws_finder-linux-amd64
asset_content_type: application/octet-stream
- uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/release/aws_finder-linux-arm64
asset_name: aws_finder-linux-amd64
asset_content_type: application/octet-stream
- uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f60b238

Please sign in to comment.