tools for exporting godot projects via Github Actions
fix gpm download path
| -rw-r--r-- | .github/actions/setup-godot/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/setup-godot/action.yml b/.github/actions/setup-godot/action.yml index d4c6749..df780b3 100644 --- a/.github/actions/setup-godot/action.yml +++ b/.github/actions/setup-godot/action.yml @@ -62,7 +62,7 @@ runs: # gpm if [[ -f godot.package ]]; then echo "Installing addons via the GPM" - wget -q "https://github.com/godot-package-manager/cli/releases/latest/download/godot-package-manager" -O gpm + wget -q "https://github.com/godot-package-manager/cli/releases/latest/download/godot-package-manager.x86_64" -O gpm chmod +x gpm ./gpm update --cfg-file godot.package --lock-file /dev/null rm gpm |