From da7f648ecf498771dadb4b0589d120b1f1192871 Mon Sep 17 00:00:00 2001 From: Lionel Henry Date: Tue, 10 Sep 2024 08:46:31 +0200 Subject: [PATCH] Upload Linux arm64 release assets --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04cf57cca..89500c0e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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