builds godot
3.x
| -rw-r--r-- | .github/actions/build-godot/action.yml | 2 | ||||
| -rw-r--r-- | .github/actions/build-upload-image/action.yml | 2 | ||||
| -rw-r--r-- | .github/actions/get-version/action.yml | 2 | ||||
| -rw-r--r-- | .github/actions/release/action.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/manual-build-2d.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/manual-build-normal.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/reusable-build.yml | 34 | ||||
| -rwxr-xr-x | README.md | 8 |
8 files changed, 27 insertions, 27 deletions
diff --git a/.github/actions/build-godot/action.yml b/.github/actions/build-godot/action.yml index dc6e09d..c0eb4ca 100644 --- a/.github/actions/build-godot/action.yml +++ b/.github/actions/build-godot/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Setup - uses: bend-n/godot-builds/.github/actions/setup@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: ref: ${{ env.ref }} diff --git a/.github/actions/build-upload-image/action.yml b/.github/actions/build-upload-image/action.yml index 4fbf2c5..f7eba72 100644 --- a/.github/actions/build-upload-image/action.yml +++ b/.github/actions/build-upload-image/action.yml @@ -16,7 +16,7 @@ runs: - uses: actions/checkout@v3 - name: Get version - uses: bend-n/godot-builds/.github/actions/get-version@main + uses: bend-n/godot-builds/.github/actions/[email protected] - name: Get templates uses: actions/download-artifact@v3 diff --git a/.github/actions/get-version/action.yml b/.github/actions/get-version/action.yml index ba8682e..3163b17 100644 --- a/.github/actions/get-version/action.yml +++ b/.github/actions/get-version/action.yml @@ -5,7 +5,7 @@ runs: using: "composite" steps: - name: Setup - uses: bend-n/godot-builds/.github/actions/setup@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: ref: ${{ env.ref }} diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index ad49765..5bc2fa1 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -14,7 +14,7 @@ runs: using: "composite" steps: - name: Get version - uses: bend-n/godot-builds/.github/actions/get-version@main + uses: bend-n/godot-builds/.github/actions/[email protected] - name: Get templates uses: actions/download-artifact@v3 diff --git a/.github/workflows/manual-build-2d.yml b/.github/workflows/manual-build-2d.yml index a9d63cc..77bbc9a 100644 --- a/.github/workflows/manual-build-2d.yml +++ b/.github/workflows/manual-build-2d.yml @@ -11,7 +11,7 @@ on: jobs: two-dimensions: name: Build ${{ inputs.ref }} - uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main + uses: bend-n/godot-builds/.github/workflows/[email protected] with: ref: ${{ inputs.ref }} name: godot-2d diff --git a/.github/workflows/manual-build-normal.yml b/.github/workflows/manual-build-normal.yml index ffe6898..f58e373 100644 --- a/.github/workflows/manual-build-normal.yml +++ b/.github/workflows/manual-build-normal.yml @@ -14,7 +14,7 @@ on: jobs: all-dimensions: name: Build ${{ inputs.ref }} - uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main + uses: bend-n/godot-builds/.github/workflows/[email protected] with: ref: ${{ inputs.ref }} name: godot diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 96796e8..0841c68 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -40,14 +40,14 @@ jobs: bits: [64] steps: - name: Compilation - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: target: ${{ matrix.target }} flags: bits=${{ matrix.bits }} ${{ env.flags }} platform: linuxbsd - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: godot/bin/*.x86_64 @@ -60,14 +60,14 @@ jobs: runs-on: windows-latest steps: - name: Compilation - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: target: ${{ matrix.target }} flags: bits=${{ matrix.bits }} ${{ env.flags }} platform: windows - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: godot/bin/*.exe @@ -85,14 +85,14 @@ jobs: distribution: temurin - name: Compilation (armv7) - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: target: ${{ matrix.target }} flags: android_arch=armv7 ${{ env.flags }} platform: android - name: Compilation (arm64v8) - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: target: ${{ matrix.target }} flags: android_arch=arm64v8 ${{ env.flags }} @@ -104,7 +104,7 @@ jobs: (cd platform/android/java && ./gradlew generateGodotTemplates) - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: godot/bin/*.apk @@ -136,14 +136,14 @@ jobs: echo 'Vulkan SDK installed successfully! You can now build Godot by running "scons".' - name: Compilation(x86_64) - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: flags: arch=x86_64 ${{ env.flags }} target: ${{ matrix.target }} platform: macos - name: Compilation(arm64) - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: flags: arch=arm64 ${{ env.flags }} target: ${{ matrix.target }} @@ -159,7 +159,7 @@ jobs: strip "bin/godot.macos.opt$target.universal" - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: godot/bin/*.universal @@ -181,14 +181,14 @@ jobs: run: emcc -v - name: Compilation - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: target: ${{ matrix.target }} flags: ${{ env.flags }} ${{ matrix.flags }} platform: web - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: godot/bin/*.zip @@ -253,7 +253,7 @@ jobs: run: cd "${tmps}" && zip -qr9 templates.tpz ./* - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: path: ${{ env.tmps }}/templates.tpz @@ -262,13 +262,13 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Compilation - uses: bend-n/godot-builds/.github/actions/build-godot@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: platform: linuxbsd target: editor - name: Upload artifact - uses: bend-n/godot-builds/.github/actions/upload-artifact@main + uses: bend-n/godot-builds/.github/actions/[email protected] with: name: linuxbsd-editor-release path: godot/bin/*.x86_64 @@ -279,7 +279,7 @@ jobs: runs-on: ubuntu-latest needs: [editor, templates] steps: - - uses: bend-n/godot-builds/.github/actions/build-upload-image@main + - uses: bend-n/godot-builds/.github/actions/[email protected] with: github-token: ${{ secrets.GITHUB_TOKEN }} name: ${{ inputs.name }} @@ -289,7 +289,7 @@ jobs: runs-on: ubuntu-latest needs: [editor, templates] steps: - - uses: bend-n/godot-builds/.github/actions/release@main + - uses: bend-n/godot-builds/.github/actions/[email protected] with: github-token: ${{ secrets.GITHUB_TOKEN }} name: ${{ inputs.name }} @@ -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,7 +21,7 @@ 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:4.0 + image: ghcr.io/bend-n/godot-2d:3.5 name: Build windows steps: - name: Build (Windows) @@ -42,7 +42,7 @@ build-windows: build-windows: runs-on: ubuntu-latest container: - image: ghcr.io/bend-n/godot-2d:4.0 + image: ghcr.io/bend-n/godot-2d:3.5 name: Build windows steps: - name: Checkout @@ -50,7 +50,7 @@ build-windows: - name: Setup godot run: | - RELEASE=stable; GODOT_VERSION=4.0.rc; + RELEASE=stable; GODOT_VERSION=3.5.stable; mkdir -v -p ~/.local/share/godot/templates mv /root/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} ~/.local/share/godot/templates/${GODOT_VERSION}.${RELEASE} |