Skip to content

Commit

Permalink
Updated CI to use Godot 4.2dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
RodZill4 committed Jul 29, 2023
1 parent 50060d5 commit 22043aa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dev-desktop-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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}
Expand Down Expand Up @@ -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}"
Expand Down

0 comments on commit 22043aa

Please sign in to comment.