From 7811a9e1a2884bf1173d998c334958e7a6dbac6d Mon Sep 17 00:00:00 2001 From: Gregory Marco Date: Sat, 25 Apr 2026 13:15:20 -0500 Subject: [PATCH] Update godot ci template to include web export/deploy. --- templates/godot.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/templates/godot.yml b/templates/godot.yml index 57bf3a9..0e4fc9f 100644 --- a/templates/godot.yml +++ b/templates/godot.yml @@ -3,15 +3,28 @@ labels: backend: docker steps: - export: + export-exe: image: godot settings: export_template: Windows Desktop target: ${CI_REPO_NAME}.exe - deploy: + export-web: + image: godot + settings: + export_template: Web + target: web/index.html + + deploy-exe: image: goat-deploy-plugin settings: source: ${CI_REPO_NAME}.exe 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