builds godot
Diffstat (limited to 'README.md')
| -rwxr-xr-x | README.md | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,5 +1,9 @@ # godot builds +[](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> + Creates two packages. - `godot`: Docker images with the _normal_ godot build. @@ -8,7 +12,7 @@ Creates two packages. ## How to use -For a full example, see this [template](https://github.com/bend-n/godot-template/blob/3d79cf6cc3e25317763ad4100e2a8692b0c2644e/.github/workflows/export.yml). +For a full example, see this [template](https://github.com/bend-n/godot-template/blob/9c9e2b02ddf9f88bff872dcd2695363d09485bc4/.github/workflows/export.yml). <details open> <summary>With helpers (recomended)</summary> @@ -17,13 +21,12 @@ 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 name: Build windows steps: - name: Build (Windows) uses: bend-n/godot-actions/.github/actions/export-windows@main env: - GODOT_VERSION: 3.5 NAME: ${{ github.event.repository.name }} ``` @@ -33,14 +36,13 @@ build-windows: <summary>Manually</summary> > **Warning** -> > This method has _not_ been tested. ```yaml 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 name: Build windows steps: - name: Checkout @@ -48,7 +50,7 @@ build-windows: - name: Setup godot run: | - RELEASE=stable; GODOT_VERSION=3.5; + RELEASE=stable; GODOT_VERSION=4.0.rc; mkdir -v -p ~/.local/share/godot/templates mv /root/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} ~/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} @@ -60,7 +62,7 @@ build-windows: GAME_NAME: ${{ github.event.repository.name }} - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: windows path: build/windows |