From 3a0b649ca56cea463eaa76740cacbe83f2066dda Mon Sep 17 00:00:00 2001 From: Gregory Marco Date: Sat, 25 Apr 2026 13:21:28 -0500 Subject: [PATCH] Use separate workflows for exe and web export. --- templates/{godot.yml => godot/exe.yml} | 13 ------------- templates/godot/web.yml | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 13 deletions(-) rename templates/{godot.yml => godot/exe.yml} (55%) create mode 100644 templates/godot/web.yml diff --git a/templates/godot.yml b/templates/godot/exe.yml similarity index 55% rename from templates/godot.yml rename to templates/godot/exe.yml index 0e4fc9f..28037e1 100644 --- a/templates/godot.yml +++ b/templates/godot/exe.yml @@ -8,12 +8,6 @@ steps: settings: export_template: Windows Desktop target: ${CI_REPO_NAME}.exe - export-web: - image: godot - settings: - export_template: Web - target: web/index.html - deploy-exe: image: goat-deploy-plugin settings: @@ -21,10 +15,3 @@ steps: target: goat@oryx.egg:~/private.nanoyagi.com/${CI_REPO_NAME}/${CI_REPO_NAME}-${CI_COMMIT_BRANCH}.exe key: from_secret: deploy_key - deploy-web: - image: goat-deploy-plugin - settings: - source: web - target: goat@oryx.egg:~/private.nanoyagi.com/${CI_REPO_NAME}/${CI_REPO_NAME}-${CI_COMMIT_BRANCH}-web - key: - from_secret: deploy_key diff --git a/templates/godot/web.yml b/templates/godot/web.yml new file mode 100644 index 0000000..5215369 --- /dev/null +++ b/templates/godot/web.yml @@ -0,0 +1,17 @@ +labels: + platform: linux/amd64 + backend: docker + +steps: + export-web: + image: godot + settings: + export_template: Web + target: web/index.html + deploy-web: + image: goat-deploy-plugin + settings: + source: web + target: goat@oryx.egg:~/private.nanoyagi.com/${CI_REPO_NAME}/${CI_REPO_NAME}-${CI_COMMIT_BRANCH}-web + key: + from_secret: deploy_key