Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Commit 836ef08

Browse files
authored
Bump godot version to 4.1-stable (#141)
1 parent b16e7e8 commit 836ef08

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/gdextension-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Download godot ${{ inputs.godot_version }}
21-
run: wget -O godot.zip https://downloads.tuxfamily.org/godotengine/${{ inputs.godot_version }}/rc2/Godot_v${{ inputs.godot_version }}-rc2_linux.x86_64.zip
21+
run: wget -O godot.zip https://downloads.tuxfamily.org/godotengine/${{ inputs.godot_version }}/Godot_v${{ inputs.godot_version }}-stable_linux.x86_64.zip
2222
- name: Extract godot
2323
run: |
2424
7z x godot.zip
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v3
5050
- name: Download godot ${{ inputs.godot_version }}
51-
run: wget -O godot.zip https://downloads.tuxfamily.org/godotengine/${{ inputs.godot_version }}/rc2/Godot_v${{ inputs.godot_version }}-rc2_linux.x86_64.zip
51+
run: wget -O godot.zip https://downloads.tuxfamily.org/godotengine/${{ inputs.godot_version }}/Godot_v${{ inputs.godot_version }}-stable_linux.x86_64.zip
5252
- name: Extract godot
5353
run: |
5454
7z x godot.zip

.github/workflows/runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Create version file
127127
run: |
128128
mkdir -p ${{ github.workspace }}/bin/templates
129-
echo ${{ env.GODOT_VERSION }}.rc2 > ${{ github.workspace }}/bin/templates/version.txt
129+
echo ${{ env.GODOT_VERSION }}.stable > ${{ github.workspace }}/bin/templates/version.txt
130130
- name: Upload version file
131131
uses: actions/upload-artifact@v2
132132
with:

scripts/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import subprocess
1111
from shutil import copytree, ignore_patterns
1212

1313
# godot v4.0.0-beta10
14-
godot_ver = "master" # os.getenv("GODOT_VERSION", "4.0")
14+
godot_ver = os.getenv("GODOT_VERSION", "4.1-stable")
1515
godot_url = "https://github.com/godotengine/godot"
1616
godot_dir = Dir("godot")
1717

0 commit comments

Comments
 (0)