From 82bf5e668ecbeb647125e6a783b1261bee7e45d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Wed, 17 Nov 2021 20:57:36 +0100 Subject: [PATCH] Fix macos export templates generation --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c08b888..3588f84 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,7 +51,9 @@ jobs: - name: Setup export templates run: | mkdir -v -p ~/.local/share/godot/templates - mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable + wget -q https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_export_templates.tpz + unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz + mv templates/* ~/.local/share/godot/templates/${GODOT_VERSION}.stable/ - name: Build game env: EXPORT_DIR_NAME: ${{ matrix.target[0] }}