Skip to content

Commit

Permalink
Update to Godot 3.6 (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
smks authored Oct 7, 2024
1 parent d5d59bb commit 8a8358e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/godot-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: "godot-ci export"
on: push

env:
GODOT_VERSION: 3.3.4
GODOT_VERSION: 3.6
EXPORT_NAME: test-project

jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:3.3.4
image: barichello/godot-ci:3.6
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -35,7 +35,7 @@ jobs:
name: Linux Export
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:3.3.4
image: barichello/godot-ci:3.6
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -60,7 +60,7 @@ jobs:
name: Web Export
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:3.3.4
image: barichello/godot-ci:3.6
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
name: Mac Export
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:3.3.4
image: barichello/godot-ci:3.6
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version of engine to build e.g. "3.4.4", "3.5"'
description: 'Version of engine to build e.g. "3.5", "3.6"'
required: true
type: string
release_name:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: barichello/godot-ci:3.4.2
image: barichello/godot-ci:3.6

# NOTE: the `cd` command in each build stage is not necessary if your
# project.godot is at the repo root
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64

ARG GODOT_VERSION="3.4.2"
ARG GODOT_VERSION="3.6"
ARG RELEASE_NAME="stable"
ARG SUBDIR=""

Expand Down
2 changes: 1 addition & 1 deletion mono.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

# When in doubt see the downloads page
# https://downloads.tuxfamily.org/godotengine/
ARG GODOT_VERSION="3.4.2"
ARG GODOT_VERSION="3.6"

# Example values: stable, beta3, rc1, alpha2, etc.
# Also change the SUBDIR property when NOT using stable
Expand Down

0 comments on commit 8a8358e

Please sign in to comment.