Skip to content

Commit

Permalink
Corrected template directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
RichTeaMan committed Jan 11, 2024
1 parent be62e8e commit 0d3a8bc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 0d3a8bc

Please sign in to comment.