From 22043aa1a2bb27d1d2d5350a70213440caac77c2 Mon Sep 17 00:00:00 2001 From: Rodz Labs Date: Sat, 29 Jul 2023 08:36:23 +0200 Subject: [PATCH] Updated CI to use Godot 4.2dev2 --- .github/workflows/dev-desktop-builds.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dev-desktop-builds.yml b/.github/workflows/dev-desktop-builds.yml index 78ee7f1ae..1d72b0a70 100644 --- a/.github/workflows/dev-desktop-builds.yml +++ b/.github/workflows/dev-desktop-builds.yml @@ -12,11 +12,11 @@ on: default: 'false' env: - GODOT_VERSION: 4.1 - GODOT_SUB: stable - GODOT_VERSION_DOWNLOAD_DIR: 4.1 + GODOT_VERSION: 4.2 + GODOT_SUB: dev2 + GODOT_DOWNLOAD_DIR: https://github.com/godotengine/godot-builds/releases/download/4.2-dev2 EXPORT_NAME: material_maker - MM_RELEASE: 1_4a2 + MM_RELEASE: 1_4a1 jobs: export_windows_linux: @@ -31,9 +31,9 @@ jobs: submodules: true - name: Setup 💻 run: | - wget -q https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_linux.x86_64.zip + wget -q ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_linux.x86_64.zip unzip Godot_v${GODOT_VERSION}-${GODOT_SUB}_linux.x86_64.zip - wget -q https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz + wget -q ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz unzip -a Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz mkdir -v -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_SUB} mv ./templates/* ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_SUB} @@ -144,9 +144,9 @@ jobs: cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles - name: Download and extract Godot and export templates 💾 run: | - curl -O https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_macos.universal.zip + curl -O ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_macos.universal.zip unzip -a Godot_v${GODOT_VERSION}-${GODOT_SUB}_macos.universal.zip - curl -O https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz + curl -O ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz unzip -a Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz mkdir -v -p "/Users/runner/Library/Application Support/Godot/export_templates/${GODOT_VERSION}.${GODOT_SUB}" mv ./templates/* "/Users/runner/Library/Application Support/Godot/export_templates/${GODOT_VERSION}.${GODOT_SUB}"