From e991bfa6047a636cd8f2c6c0f994dc63f12df24b Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Tue, 12 Dec 2023 17:41:54 -0500 Subject: [PATCH] [ci] Use a tarball for the steamrt-sniper artifact. Zips can't preserve the symlink, so make the .tar.gz package with package_native.sh and zip that up instead. --- .github/workflows/artifacts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 9fe6485a..669a38fa 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -54,7 +54,7 @@ jobs: shell: bash run: | export VERSION_NAME="${GITHUB_REF##*/}-${GITHUB_SHA##*/}" - ./package-native.sh ${VERSION_NAME} build --no-package + ./package-native.sh ${VERSION_NAME} build echo "VERSION_NAME=${VERSION_NAME}" >> $GITHUB_ENV - name: Upload artifacts @@ -62,5 +62,5 @@ jobs: uses: actions/upload-artifact@v3 with: name: dxvk-${{ env.VERSION_NAME }} - path: build/dxvk-native-${{ env.VERSION_NAME }} + path: build/dxvk-native-${{ env.VERSION_NAME }}.tar.gz if-no-files-found: error