We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50825d commit 8926ae5Copy full SHA for 8926ae5
.github/workflows/package.yml
@@ -57,6 +57,7 @@ jobs:
57
cp ../src/packaging/j3.bat bundle/J3
58
cp ../src/packaging/j3 bundle/J3
59
chmod +x bundle/J3/j3
60
+ popd
61
62
- name: Upload platform-independent bundle
63
if: runner.os == 'Linux'
@@ -98,7 +99,11 @@ jobs:
98
99
cp temp/J3-Windows/* release
100
cp temp/J3-Linux/* release
101
cp temp/J3-macOS/* release
- zip -r release/J3.zip temp/J3/*
102
+
103
+ # Run zip from the base directory to avoid including "junk" folders
104
+ pushd temp/J3
105
+ zip -r ../../release/J3.zip .
106
107
108
- name: Stage GitHub release
109
run: |
0 commit comments