builds godot
Diffstat (limited to 'README.md')
| -rwxr-xr-x | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,6 +1,6 @@ # godot builds -[](https://godotengine.org) +[](https://godotengine.org) [](https://aur.archlinux.org/packages/godot2d "Aur package") <a href='https://ko-fi.com/bendn' title='Buy me a coffee' target='_blank'><img height='28' src='https://ko-fi.com/img/githubbutton_sm.svg' alt='Buy me a coffee'> </a> @@ -21,13 +21,13 @@ For a full example, see this [template](https://github.com/bend-n/godot-template build-windows: runs-on: ubuntu-latest container: - image: ghcr.io/bend-n/godot-2d:3.5 + image: ghcr.io/bend-n/godot-2d:4.0.beta name: Build windows steps: - name: Build (Windows) uses: bend-n/godot-actions/.github/actions/export-windows@main env: - GODOT_VERSION: 3.5 + GODOT_VERSION: 4.0 NAME: ${{ github.event.repository.name }} ``` @@ -43,7 +43,7 @@ build-windows: build-windows: runs-on: ubuntu-latest container: - image: ghcr.io/bend-n/godot-2d:3.5 + image: ghcr.io/bend-n/godot-2d:4.0.beta name: Build windows steps: - name: Checkout @@ -51,7 +51,7 @@ build-windows: - name: Setup godot run: | - RELEASE=stable; GODOT_VERSION=3.5; + RELEASE=stable; GODOT_VERSION=4.0; mkdir -v -p ~/.local/share/godot/templates mv /root/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} ~/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} |