From a1847b882dd8e373050a8a91ff26cb7aa0080476 Mon Sep 17 00:00:00 2001 From: Rob Cannon Date: Sun, 3 Dec 2023 23:42:42 -0500 Subject: [PATCH] Update for Godot 4.1.1 --- .github/workflows/dockerhub.yml | 4 ++-- Dockerfile | 2 +- README.md | 29 +++++++++++++++-------------- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 75461e2..64c1a1a 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 + latest: 4.1.1 on: push: @@ -18,7 +18,7 @@ jobs: strategy: matrix: version: - - '4.1' + - '4.1.1' exports: - linux - macos diff --git a/Dockerfile b/Dockerfile index 327f5f9..84c0dd2 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 +ARG GODOT_VERSION=4.1.1 #------------------------------ # Installs packages to use wget diff --git a/README.md b/README.md index b87a899..795f748 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-desktop + image: godot-headless:4.1.1-desktop volumes: - ./:/project command: --path /project --export win64 bin/win64/maze-test.exe @@ -18,23 +18,24 @@ 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) 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.1) which includes all templates provided by Godot. -- `4.1`, `4.1-all`, `latest` - - `4.1-desktop` - - `4.1-linux` - - `4.1-macos` - - `4.1-windows` - - `4.1-win32` - - `4.1-win64` - - `4.1-mobile` - - `4.1-android` - - `4.1-ios` - - `4.1-web` +- `4.1.1`, `4.1.1-all`, `latest` + - `4.1.1-desktop` + - `4.1.1-linux` + - `4.1.1-macos` + - `4.1.1-windows` + - `4.1.1-win32` + - `4.1.1-win64` + - `4.1.1-mobile` + - `4.1.1-android` + - `4.1.1-ios` + - `4.1.1-web` Prior versions: -- `4.0.4` +- `4.1.1` +- `4.1` - `4.0.3` - `4.0.2` - `4.0.1`