From 3458f6124b03168c0aae774950fdc6a2c9bee0c3 Mon Sep 17 00:00:00 2001 From: Barichello Date: Thu, 17 Sep 2020 11:06:55 -0300 Subject: [PATCH] Update to 3.2.3 --- .github/workflows/godot-ci.yml | 10 +++++----- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml index ca1e88c..2780714 100644 --- a/.github/workflows/godot-ci.yml +++ b/.github/workflows/godot-ci.yml @@ -2,7 +2,7 @@ name: "godot-ci export" on: push env: - GODOT_VERSION: 3.2.1 + GODOT_VERSION: 3.2.3 EXPORT_NAME: test-project jobs: @@ -10,7 +10,7 @@ jobs: name: Windows Export runs-on: ubuntu-latest container: - image: barichello/godot-ci:3.2.1 + image: barichello/godot-ci:3.2.3 steps: - name: Checkout uses: actions/checkout@v1 @@ -33,7 +33,7 @@ jobs: name: Linux Export runs-on: ubuntu-latest container: - image: barichello/godot-ci:3.2.1 + image: barichello/godot-ci:3.2.3 steps: - name: Checkout uses: actions/checkout@v1 @@ -56,7 +56,7 @@ jobs: name: Web Export runs-on: ubuntu-latest container: - image: barichello/godot-ci:3.2.1 + image: barichello/godot-ci:3.2.3 steps: - name: Checkout uses: actions/checkout@v1 @@ -89,7 +89,7 @@ jobs: name: Mac Export runs-on: ubuntu-latest container: - image: barichello/godot-ci:3.2.1 + image: barichello/godot-ci:3.2.3 steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 17563fc..93de171 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: barichello/godot-ci:3.2.1 +image: barichello/godot-ci:3.2.3 # Cache imported assets between runs cache: diff --git a/Dockerfile b/Dockerfile index 1dd88b3..d14c963 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ zip \ && rm -rf /var/lib/apt/lists/* -ENV GODOT_VERSION "3.2.2" +ENV GODOT_VERSION "3.2.3" RUN wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \ && wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_export_templates.tpz \