Skip to content

Commit 21e4234

Browse files
fixed the build workflow
Fixed the build workflow
1 parent 1d649a1 commit 21e4234

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
- name: Download Godot
3333
run: |
3434
cd /opt
35-
wget -q "https://godot-releases.nbg1.your-objectstorage.com/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_linux.x86_64.zip" -O godot.zip
36-
unzip -q godot.zip
35+
wget -q "https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}-stable/godot-${GODOT_VERSION}-stable.tar.xz" -O godot.tar.xz
36+
tar -xf godot.tar.xz
3737
sudo mv "Godot_v${GODOT_VERSION}-stable_linux.x86_64" /usr/local/bin/godot
3838
sudo chmod +x /usr/local/bin/godot
3939
@@ -42,7 +42,7 @@ jobs:
4242
set -e
4343
TEMPLATE_DIR="$HOME/.local/share/godot/export_templates/${GODOT_VERSION}.stable"
4444
mkdir -p "$TEMPLATE_DIR"
45-
wget -q "https://godot-releases.nbg1.your-objectstorage.com/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_export_templates.tpz" -O "$TEMPLATE_DIR/export_templates.tpz"
45+
wget -q "https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_export_templates.tpz" -O "$TEMPLATE_DIR/export_templates.tpz"
4646
cd "$TEMPLATE_DIR"
4747
unzip -q export_templates.tpz
4848
mv templates/* .

0 commit comments

Comments
 (0)