Skip to content

Commit

Permalink
Upload Linux arm64 release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Sep 10, 2024
1 parent f86ebe6 commit da7f648
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ jobs:
with:
name: ark-${{ matrix.flavor }}-linux-x64-archive

- name: Download Linux arm64 kernel (${{ matrix.flavor}})
uses: actions/download-artifact@v4
with:
name: ark-${{ matrix.flavor }}-linux-arm64-archive

- name: Upload macOS release artifact (universal)
uses: actions/upload-release-asset@v1
env:
Expand Down Expand Up @@ -159,6 +164,16 @@ jobs:
asset_name: ark-${{ needs.get_version.outputs.ARK_VERSION }}${{ env.DEBUG_FLAG }}-linux-x64.zip
asset_content_type: application/octet-stream

- name: Upload Linux release artifacts (arm64)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: ark-${{ needs.get_version.outputs.ARK_VERSION }}-${{ matrix.flavor }}-linux-arm64.zip
asset_name: ark-${{ needs.get_version.outputs.ARK_VERSION }}${{ env.DEBUG_FLAG }}-linux-arm64.zip
asset_content_type: application/octet-stream

status:
if: ${{ failure() }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit da7f648

Please sign in to comment.