„.gitea/workflows/build.yml“ ändern
Some checks failed
Export Game Job

This commit is contained in:
Snoweuph 2023-04-05 09:33:56 +00:00
parent b3000a193d
commit 14849c9a20

View file

@ -31,7 +31,7 @@ jobs:
- name: export for linux
run: |
mkdir -p ./builds/linux/
/root/.local/share/godot/godot_executable/Godot_v4.0-stable_linux.x86_64 /var/lib/actions/project.godot --headless --export-release Linux/X11 ./builds/linux/Game.x86_64
/root/.local/share/godot/godot_executable/Godot_v4.0-stable_linux.x86_64 /var/lib/actions/project.godot --headless -q --export-release Linux/X11 ./builds/linux/Game.x86_64
- name: package for linux
run: |
cd builds
@ -46,7 +46,7 @@ jobs:
uses: https://github.com/ncipollo/release-action@v1
with:
token: ${{ secrets.DEPLOY_TOKEN }}
tag: ${{ github.ref_name }} Test
tag: test
name: Test
artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action
artifacts: builds/linux.tar.gz # Added "/*" at the end is glob pattern match for this action