Remove unnecessary folder operations
Some checks failed
godot-ci export / Windows Export (push) Failing after 17s
godot-ci export / Linux Export (push) Failing after 12s
godot-ci export / Web Export (push) Failing after 11s
godot-ci export / Mac Export (push) Failing after 21s

This commit is contained in:
Antonio Dell'Annunziata 2025-03-02 14:14:07 +01:00
parent 50791bf8cd
commit 7064e968f1
No known key found for this signature in database
GPG key ID: 8D2BB16641F06E94

View file

@ -21,10 +21,7 @@ jobs:
lfs: true lfs: true
- name: Windows Build - name: Windows Build
run: | run: |
mkdir -v -p ~/.local/share/godot/export_templates/
mkdir -v -p ~/.config/ mkdir -v -p ~/.config/
mv /root/.config/godot ~/.config/godot
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
mkdir -v -p build/windows mkdir -v -p build/windows
EXPORT_DIR="$(readlink -f build)" EXPORT_DIR="$(readlink -f build)"
cd $PROJECT_PATH cd $PROJECT_PATH
@ -47,8 +44,6 @@ jobs:
lfs: true lfs: true
- name: Linux Build - name: Linux Build
run: | run: |
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
mkdir -v -p build/linux mkdir -v -p build/linux
EXPORT_DIR="$(readlink -f build)" EXPORT_DIR="$(readlink -f build)"
cd $PROJECT_PATH cd $PROJECT_PATH
@ -71,8 +66,6 @@ jobs:
lfs: true lfs: true
- name: Web Build - name: Web Build
run: | run: |
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
mkdir -v -p build/web mkdir -v -p build/web
EXPORT_DIR="$(readlink -f build)" EXPORT_DIR="$(readlink -f build)"
cd $PROJECT_PATH cd $PROJECT_PATH
@ -95,8 +88,6 @@ jobs:
lfs: true lfs: true
- name: Mac Build - name: Mac Build
run: | run: |
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
mkdir -v -p build/mac mkdir -v -p build/mac
EXPORT_DIR="$(readlink -f build)" EXPORT_DIR="$(readlink -f build)"
cd $PROJECT_PATH cd $PROJECT_PATH