This repository was archived by the owner on Dec 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import subprocess
1111from 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 " )
1515godot_url = "https://github.com/godotengine/godot"
1616godot_dir = Dir ("godot" )
1717
You can’t perform that action at this time.
0 commit comments