We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c03ad38 commit 0f472c5Copy full SHA for 0f472c5
.github/workflows/main.yml
@@ -45,13 +45,14 @@ jobs:
45
if [ "${{ runner.os }}" = "Windows" ]; then
46
powershell.exe -Command "Compress-Archive -Path 'build/run.dist/*' -DestinationPath 'zip_output/ShatterStack-${{ runner.os }}.zip'"
47
else
48
- zip -r "zip_output/ShatterStack-${{ runner.os }}.zip" build/run.dist/*
+ cd build/run.dist
49
+ zip -r "../../zip_output/ShatterStack-${{ runner.os }}.zip" .
50
fi
51
52
- name: Upload Zipped Build Artifact
53
uses: actions/upload-artifact@v4
54
with:
- name: ShatterStack-${{ runner.os }}
55
+ name: ShatterStack-${{ runner.os }}.zip
56
path: zip_output/ShatterStack-${{ runner.os }}.zip
57
58
release:
0 commit comments