diff --git a/.releaserc.yaml b/.releaserc.yaml index 57401b39..00f86b5a 100644 --- a/.releaserc.yaml +++ b/.releaserc.yaml @@ -35,7 +35,7 @@ plugins: # Execute commands to build the project - - "@semantic-release/exec" - shell: true - prepareCmd: "make in-docker IMAGE_TAG=4.5 TARGET='force-import dist update-pkgbuild-hash'" + prepareCmd: "make in-docker IMAGE_TAG=4.5.1 TARGET='force-import dist update-pkgbuild-hash'" publishCmd: "echo '${nextRelease.version}' > .version.txt" # Commit the following changes to git after other plugins have run diff --git a/docker/Dockerfile b/docker/Dockerfile index cccf0fe7..fe39df86 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ FROM archlinux:base-devel LABEL org.opencontainers.image.title="OpenGamepadUI Builder Container" LABEL org.opencontainers.image.description="Build container for OpenGamepadUI" LABEL org.opencontainers.image.source="https://github.com/ShadowBlip/OpenGamepadUI" -LABEL org.opencontainers.image.version="4.5" +LABEL org.opencontainers.image.version="4.5.1" RUN sed -i '/ParallelDownloads/s/^#//g' /etc/pacman.conf @@ -22,7 +22,7 @@ RUN pacman --noconfirm -Syyu && pacman -S --needed --noconfirm \ jq # Download and install the appropriate version of Godot -ARG GODOT_VERSION=4.5 +ARG GODOT_VERSION=4.5.1 ARG GODOT_RELEASE=stable RUN mkdir /tmp/godot && \ wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip -O /tmp/godot/godot.zip && \