Godot template repository for my programs
Diffstat (limited to '.github/workflows/export.yml')
| -rw-r--r-- | .github/workflows/export.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index 1527e24..1c6af26 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -6,11 +6,15 @@ on: - "**.gd" - "**.tscn" - "**.import" + - "**.tres" + - "**.ttf" + - "**.yml" branches: - main env: - GODOT_VERSION: 3.4.4 + GODOT_VERSION: 3.5 + RELEASE: rc NAME: ${{ github.event.repository.name }} jobs: @@ -18,7 +22,7 @@ jobs: name: Windows Export runs-on: ubuntu-20.04 container: - image: docker://barichello/godot-ci:3.4.4 + image: ghcr.io/bend-n/godot-2d:3.5.rc steps: - name: Build uses: bend-n/godot-actions/.github/actions/export-windows@main @@ -27,7 +31,7 @@ jobs: name: Linux Export runs-on: ubuntu-20.04 container: - image: docker://barichello/godot-ci:3.4.4 + image: ghcr.io/bend-n/godot-2d:3.5.rc steps: - name: Build uses: bend-n/godot-actions/.github/actions/export-linux@main @@ -36,7 +40,7 @@ jobs: name: Web Export runs-on: ubuntu-20.04 container: - image: docker://barichello/godot-ci:3.4.4 + image: ghcr.io/bend-n/godot-2d:3.5.rc steps: - name: Build uses: bend-n/godot-actions/.github/actions/export-web@main @@ -45,7 +49,7 @@ jobs: name: Mac Export runs-on: ubuntu-20.04 container: - image: docker://barichello/godot-ci:3.4.4 + image: ghcr.io/bend-n/godot-2d:3.5.rc steps: - name: Build uses: bend-n/godot-actions/.github/actions/export-mac@main @@ -54,7 +58,7 @@ jobs: name: Android Export runs-on: ubuntu-20.04 container: - image: docker://barichello/godot-ci:3.4.4 + image: ghcr.io/bend-n/godot-2d:3.5.rc steps: - name: Build uses: bend-n/godot-actions/.github/actions/export-android@main |