From 1b854a2b0464a58f4bb83a8d95d92d7d15e4d202 Mon Sep 17 00:00:00 2001 From: Rodz Labs Date: Sat, 5 Aug 2023 16:44:57 +0200 Subject: [PATCH] Try to fix macOS CI Use wget instead of curl --- .github/workflows/dev-desktop-builds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-desktop-builds.yml b/.github/workflows/dev-desktop-builds.yml index 1d72b0a70..93804c848 100644 --- a/.github/workflows/dev-desktop-builds.yml +++ b/.github/workflows/dev-desktop-builds.yml @@ -144,9 +144,9 @@ jobs: cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles - name: Download and extract Godot and export templates 💾 run: | - curl -O ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_macos.universal.zip + wget ${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 ${GODOT_DOWNLOAD_DIR}/Godot_v${GODOT_VERSION}-${GODOT_SUB}_export_templates.tpz + wget ${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}"