Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 && \
Expand Down