diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 88a2c82..b7107c5 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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