Skip to content

Commit

Permalink
Use a tarball for the steamrt-sniper artifact.
Browse files Browse the repository at this point in the history
Zips can't preserve the symlink, so make the .tar.gz package with package_native.sh and zip that up instead.
  • Loading branch information
flibitijibibo committed Mar 1, 2024
1 parent f38fc52 commit 97cbb94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ 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
id: upload-artifacts
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

0 comments on commit 97cbb94

Please sign in to comment.