From 0d3a8bc22c70190b7e388e87e103f89a9a989bce Mon Sep 17 00:00:00 2001 From: Thomas Holmes Date: Thu, 11 Jan 2024 22:14:03 +0000 Subject: [PATCH] Corrected template directory. --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cb8d15..46f91aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,8 +4,9 @@ name: "ci export" on: push env: - GODOT_VERSION: 4.2.1.stable.mono EXPORT_NAME: combine_derby + GODOT_VERSION: 4.2.1.stable.mono + TEMPLATE_DIRECTORY: /root/.local/share/godot/templates/ jobs: export-windows: @@ -24,7 +25,7 @@ jobs: ./setBuildConstants.sh mkdir -v -p ~/.local/share/godot/export_templates mkdir -v -p ~/.config/godot - mv /root/.local/share/godot/export_templates/${GODOT_VERSION} ~/.local/share/godot/export_templates/${GODOT_VERSION} + mv ${TEMPLATE_DIRECTORY}/${GODOT_VERSION} ~/.local/share/godot/export_templates/${GODOT_VERSION} mv /root/.config/godot/editor_settings-4.tres ~/.config/godot/editor_settings-4.tres - name: Windows Dependencies run: | @@ -61,7 +62,7 @@ jobs: ./setBuildConstants.sh mkdir -v -p ~/.local/share/godot/export_templates mkdir -v -p ~/.config/godot - mv /root/.local/share/godot/export_templates/${GODOT_VERSION} ~/.local/share/godot/export_templates/${GODOT_VERSION} + mv ${TEMPLATE_DIRECTORY}/${GODOT_VERSION} ~/.local/share/godot/export_templates/${GODOT_VERSION} mv /root/.config/godot/editor_settings-4.tres ~/.config/godot/editor_settings-4.tres - name: Linux Build run: |