File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,20 @@ jobs:
5050 run : USE_RESTCLIENT=1 USE_INTERNAL_LUA=1 USE_CURL_DLOPEN=0 make -j
5151 - name : download paks
5252 run : ./misc/download-paks.sh
53+ - name : extract pak
54+ run : |
55+ PKG=tremulous-${{ env.release_name }}
56+ echo "PKG=" $PKG >> $GITHUB_ENV
57+ mkdir ./build/$PKG
58+ pushd ./build/$PKG
59+ unzip ../${{ env.release_name }}.zip
5360 - name : change perms
5461 run : chmod -R ugo+rw build
55- - name : upload binaries
62+ - name : repack and upload archives
5663 # only run if this was a tagged release (only works if separate job)
5764 # if: ( github.event_name == "create" ) && ( github.event.ref_type == 'tag' )
5865 uses : actions/upload-artifact@v4
5966 with :
60- name : ${{ env.release_name }}
61- path : ./build/${{ env.release_name }}.zip
67+ name : ${{ env.PKG }}
68+ path : ./build/${{ env.PKG }}
6269
You can’t perform that action at this time.
0 commit comments