From dede196545ec193ad9c49e111b34c855675e8718 Mon Sep 17 00:00:00 2001 From: Rob Cannon Date: Mon, 4 Dec 2023 22:50:13 -0500 Subject: [PATCH] Updated Godot to 4.1.3 --- .github/workflows/dockerhub.yml | 4 ++-- Dockerfile | 2 +- README.md | 27 ++++++++++++++------------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 1a34b06..47b82e3 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -2,7 +2,7 @@ name: Dockerhub env: docker_repo: robpc/godot-headless - latest: 4.1.2 + latest: 4.1.3 on: push: @@ -18,7 +18,7 @@ jobs: strategy: matrix: version: - - '4.1.2' + - '4.1.3' exports: - linux - macos diff --git a/Dockerfile b/Dockerfile index 2ee7563..7d32a01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ARG EXPORT_TEMPLATES=all # Alias for the root image FROM debian:stable-slim AS base -ARG GODOT_VERSION=4.1.2 +ARG GODOT_VERSION=4.1.3 #------------------------------ # Installs packages to use wget diff --git a/README.md b/README.md index 6468c25..c18c856 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The entrypoint calls the Godot Engine (`/usr/local/bin/godot`) so override the ` version: '2' services: godot: - image: godot-headless:4.1.2-desktop + image: godot-headless:4.1.3-desktop volumes: - ./:/project command: --path /project --export win64 bin/win64/maze-test.exe @@ -18,22 +18,23 @@ services: ## Docker Tags -The tags follow the Godot version and allow for different export template installs (for filesize). When in doubt use the base version (ex. 4.1.2) which includes all templates provided by Godot. +The tags follow the Godot version and allow for different export template installs (for filesize). When in doubt use the base version (ex. 4.1.3) which includes all templates provided by Godot. -- `4.1.2`, `4.1.2-all`, `latest` - - `4.1.2-desktop` - - `4.1.2-linux` - - `4.1.2-macos` - - `4.1.2-windows` - - `4.1.2-win32` - - `4.1.2-win64` - - `4.1.2-mobile` - - `4.1.2-android` - - `4.1.2-ios` - - `4.1.2-web` +- `4.1.3`, `4.1.3-all`, `latest` + - `4.1.3-desktop` + - `4.1.3-linux` + - `4.1.3-macos` + - `4.1.3-windows` + - `4.1.3-win32` + - `4.1.3-win64` + - `4.1.3-mobile` + - `4.1.3-android` + - `4.1.3-ios` + - `4.1.3-web` Prior versions: +- `4.1.2` - `4.1.1` - `4.1` - `4.0.3`