File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ for file in $(git ls-tree --name-only HEAD -r); do
20
20
cp -dp ${file} ${outdir} /${file} # preserve symlinks for AUTHORS, COPYING, COPYING.LESSER and COPYRIGHT
21
21
done
22
22
23
- # Create the zip archive
24
- outzip =cudacpp.zip
23
+ # Create the tgz archive
24
+ outtgz =cudacpp.tar.gz
25
25
cd ${tmpdir}
26
- zip -qr ${outzip } CUDACPP_OUTPUT
27
- mv ${outzip } ${topdir}
28
- echo " Archive available on ${topdir} /${outzip } "
26
+ tar -czf ${outtgz } CUDACPP_OUTPUT
27
+ mv ${outtgz } ${topdir}
28
+ echo " Archive available on ${topdir} /${outtgz } "
Original file line number Diff line number Diff line change 22
22
uses : softprops/action-gh-release@v2
23
23
if : startsWith(github.ref, 'refs/tags/')
24
24
with :
25
- files : cudacpp.zip
25
+ files : cudacpp.tar.gz
26
26
env :
27
27
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments