From 8e71184daf844de0a0ee19ee61d2fcfb09603cf3 Mon Sep 17 00:00:00 2001 From: water111 <48171810+water111@users.noreply.github.com> Date: Sun, 3 Apr 2022 19:44:25 -0400 Subject: [PATCH] rename linux artifact (#1277) * rename linux artifact * just linux --- .github/scripts/releases/upload-release-artifacts/index.js | 4 +--- .github/workflows/linux-workflow.yaml | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/scripts/releases/upload-release-artifacts/index.js b/.github/scripts/releases/upload-release-artifacts/index.js index 57cf2f38ea..be7b65f0e0 100644 --- a/.github/scripts/releases/upload-release-artifacts/index.js +++ b/.github/scripts/releases/upload-release-artifacts/index.js @@ -114,9 +114,7 @@ let expectedAssets = { "windows-decompiler": false, "windows-gk": false, "windows-goalc": false, - "linux-decompiler": false, - "linux-gk": false, - "linux-goalc": false, + "linux" : false, } for (var i = 0; i < releaseAssetsPost.length; i++) { diff --git a/.github/workflows/linux-workflow.yaml b/.github/workflows/linux-workflow.yaml index 1f4d5dbfb3..923da57237 100644 --- a/.github/workflows/linux-workflow.yaml +++ b/.github/workflows/linux-workflow.yaml @@ -102,14 +102,14 @@ jobs: run: | mkdir -p ./ci-artifacts/out ./scripts/shell/extract_build.sh ./ci-artifacts/out ./ - tar czf ./ci-artifacts/opengoal.tar.gz ./ci-artifacts/out + tar czf ./ci-artifacts/linux.tar.gz ./ci-artifacts/out - name: Upload Assets and Potential Publish Release if: github.repository == 'open-goal/jak-project' && startsWith(github.ref, 'refs/tags/') && matrix.compiler == 'clang' env: GITHUB_TOKEN: ${{ secrets.BOT_PAT }} ASSET_DIR: ${{ github.WORKSPACE }}/ci-artifacts - ASSET_EXTENSION: zip + ASSET_EXTENSION: gz TAG_TO_SEARCH_FOR: ${{ github.REF }} run: | cd ./.github/scripts/releases/upload-release-artifacts