Skip to content

Commit

Permalink
Added arm64 linux to release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexroan committed Jun 5, 2024
1 parent 4bd2628 commit 2f1d0c2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on:
push:
tags:
- 'v*'

name: Release

jobs:
Expand All @@ -17,6 +17,9 @@ jobs:
- name: linux-amd64
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- name: aarch64-unknown-linux-gnu
runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
- name: win-amd64
runner: windows-latest
target: x86_64-pc-windows-msvc
Expand Down Expand Up @@ -106,6 +109,16 @@ jobs:
asset_name: aderyn-linux-amd64.tar.gz
asset_content_type: application/gzip

- name: Upload Compressed Linux arm64 Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/aderyn-aarch64-unknown-linux-gnu.tar.gz/aderyn-aarch64-unknown-linux-gnu.tar.gz
asset_name: aderyn-linux-arm64.tar.gz
asset_content_type: application/gzip

- name: Upload Compressed Windows amd64 Asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 2f1d0c2

Please sign in to comment.