diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml index e77ee0a..056cafc 100644 --- a/.github/workflows/godot-ci.yml +++ b/.github/workflows/godot-ci.yml @@ -19,7 +19,7 @@ jobs: lfs: true - name: Setup run: | - mkdir -v -p ~/.local/share/godot/templates + mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable - name: Windows Build run: | @@ -44,7 +44,7 @@ jobs: lfs: true - name: Setup run: | - mkdir -v -p ~/.local/share/godot/templates + mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable - name: Linux Build run: | @@ -69,7 +69,7 @@ jobs: lfs: true - name: Setup run: | - mkdir -v -p ~/.local/share/godot/templates + mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable - name: Web Build run: | @@ -102,7 +102,7 @@ jobs: lfs: true - name: Setup run: | - mkdir -v -p ~/.local/share/godot/templates + mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable - name: Mac Build run: | diff --git a/Dockerfile b/Dockerfile index 788d39d..646f61f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,6 @@ RUN wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}${SUBDIR}/G && mkdir ~/.cache \ && mkdir -p ~/.config/godot \ && mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${RELEASE_NAME} \ - && ln -s ~/.local/share/godot/templates ~/.local/share/godot/export_templates \ && unzip Godot_v${GODOT_VERSION}-${RELEASE_NAME}_${GODOT_PLATFORM}.zip \ && mv Godot_v${GODOT_VERSION}-${RELEASE_NAME}_${GODOT_PLATFORM} /usr/local/bin/godot \ && unzip Godot_v${GODOT_VERSION}-${RELEASE_NAME}_export_templates.tpz \