From 600f3f365e11bb828e93f2111f29e607df0779c2 Mon Sep 17 00:00:00 2001 From: Ted Ralphs Date: Wed, 25 Oct 2023 12:53:35 -0400 Subject: [PATCH] Trying to disable uploading assets to release for arm64 --- .github/workflows/linux-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 99704a4b..4dfa57ff 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -93,7 +93,7 @@ jobs: path: release.tar.gz if-no-files-found: error - name: Upload package to release - if: ${{ github.event_name == 'release'}} + if: github.event_name == 'release' && github.include.arch != 'arm64' uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}