fixed some problme
Some checks failed
Build Release / Linux Export (pull_request) Successful in 2m8s
Build Release / Windows Export (pull_request) Successful in 2m43s
Build Release / Create Release (pull_request) Failing after 2m2s

This commit is contained in:
2026-03-18 00:03:01 +01:00
parent 0a92f7b461
commit 172fc7669b

View File

@@ -187,11 +187,11 @@ jobs:
run: | run: |
# Zip Windows builds # Zip Windows builds
cd build/windows cd build/windows
zip -r ../../MyGame_Windows-${{ steps.changelog.outputs.version }}.zip ./* zip -r windows-${{ steps.changelog.outputs.version }}.zip ./*
# Zip Linux builds # Zip Linux builds
cd ../../linux cd ../../linux
zip -r ../../MyGame_Linux-${{ steps.changelog.outputs.version }}.zip ./* zip -r linux-${{ steps.changelog.outputs.version }}.zip ./*
- name: Create Release - name: Create Release
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
@@ -203,5 +203,5 @@ jobs:
draft: false draft: false
token: ${{ secrets.GITEA_TOKEN }} token: ${{ secrets.GITEA_TOKEN }}
files: | files: |
build/MyGame_Windows-${{ steps.changelog.outputs.version }}.zip build/windows-${{ steps.changelog.outputs.version }}.zip
build/MyGame_Linux-${{ steps.changelog.outputs.version }}.zip build/linux-${{ steps.changelog.outputs.version }}.zip