Skip to content

Commit

Permalink
Updated Godot to 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robpc committed Aug 16, 2024
1 parent ba10f6d commit bc9e7ee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dockerhub

env:
docker_repo: robpc/godot-headless
latest: 4.2.1
latest: 4.2.2

on:
push:
Expand All @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
version:
- '4.2.1'
- '4.2.2'
exports:
- linux
- macos
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG EXPORT_TEMPLATES=all
# Alias for the root image
FROM debian:stable-slim AS base

ARG GODOT_VERSION=4.2.1
ARG GODOT_VERSION=4.2.2

#------------------------------
# Installs packages to use wget
Expand Down
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,31 @@ The entrypoint calls the Godot Engine (`/usr/local/bin/godot`) so override the `
version: '2'
services:
godot:
image: godot-headless:4.2-desktop
image: godot-headless:4.2.2-desktop
volumes:
- ./:/project
command: --path /project --export win64 bin/win64/maze-test.exe
```
## 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.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.2.2) which includes all templates provided by Godot.
- `4.2.1`, `4.2.1-all`, `latest`
- `4.2.1-desktop`
- `4.2.1-linux`
- `4.2.1-macos`
- `4.2.1-windows`
- `4.2.1-win32`
- `4.2.1-win64`
- `4.2.1-mobile`
- `4.2.1-android`
- `4.2.1-ios`
- `4.2.1-web`
- `4.2.2`, `4.2.2-all`, `latest`
- `4.2.2-desktop`
- `4.2.2-linux`
- `4.2.2-macos`
- `4.2.2-windows`
- `4.2.2-win32`
- `4.2.2-win64`
- `4.2.2-mobile`
- `4.2.2-android`
- `4.2.2-ios`
- `4.2.2-web`

Prior versions:

- `4.2.1`
- `4.2`
- `4.1.3`
- `4.1.2`
Expand Down

0 comments on commit bc9e7ee

Please sign in to comment.