fix: zipping exports
This commit is contained in:
@@ -183,6 +183,16 @@ jobs:
|
|||||||
echo "$BODY" >> $GITHUB_OUTPUT
|
echo "$BODY" >> $GITHUB_OUTPUT
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Zipping exports
|
||||||
|
run: |
|
||||||
|
# Zip Windows builds
|
||||||
|
cd build/windows
|
||||||
|
zip -r ../../MyGame_Windows.zip ./*
|
||||||
|
|
||||||
|
# Zip Linux builds
|
||||||
|
cd ../../linux
|
||||||
|
zip -r ../../MyGame_Linux.zip ./*
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: akkuman/gitea-release-action@v1
|
uses: akkuman/gitea-release-action@v1
|
||||||
with:
|
with:
|
||||||
@@ -193,5 +203,5 @@ jobs:
|
|||||||
draft: false
|
draft: false
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
files: |
|
files: |
|
||||||
build/windows/${{ env.EXPORT_NAME }}.exe
|
build/MyGame_Windows.zip
|
||||||
build/linux/${{ env.EXPORT_NAME }}.x86_64
|
build/MyGame_Linux.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user