feat(gitea): update to version 1.0.1 with improved binary path handling and enhanced error reporting

This commit is contained in:
Martin Tahiraj
2026-04-02 10:39:37 +02:00
parent bc2fbe7f5b
commit 209a47b043
4 changed files with 27 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 1.0.1 - 2026-04-02
- fix: act_runner binary path — official image places binary at `/act_runner`, not `/usr/local/bin/act_runner`
- fix: Dockerfile now symlinks `/act_runner``/usr/local/bin/act_runner` at build time
- fix: run.sh now auto-detects binary location at runtime as a fallback safety net
## 1.0.0 - 2026-04-01
- Initial release

View File

@@ -1,8 +1,11 @@
ARG BUILD_FROM
FROM ${BUILD_FROM}
# Install jq to parse /data/options.json provided by the HA supervisor
RUN apk add --no-cache jq
# Install jq to parse /data/options.json provided by the HA supervisor.
# Also create a stable symlink so act_runner is available at /usr/local/bin/act_runner
# regardless of where the base image places it (official image puts it at /act_runner).
RUN apk add --no-cache jq \
&& ln -sf "$(command -v act_runner 2>/dev/null || echo /act_runner)" /usr/local/bin/act_runner
COPY run.sh /run.sh
RUN chmod +x /run.sh

View File

@@ -1,5 +1,5 @@
name: Gitea act_runner
version: "1.0.0"
version: "1.0.1"
slug: gitea_act_runner
description: Run Gitea Actions jobs natively on your Home Assistant machine
url: "https://github.com/martemme/HomeAssistantAddons/tree/main/gitea-act-runner"

View File

@@ -2,9 +2,22 @@
set -e
CONFIG="/data/options.json"
ACT_RUNNER="/usr/local/bin/act_runner"
RUNNER_FILE="/data/.runner"
ACT_RUNNER_CONFIG="/data/act_runner_config.yaml"
RUNNER_FILE="/data/.runner"
# Locate the act_runner binary (official image places it at /act_runner,
# Dockerfile symlinks it to /usr/local/bin — accept either).
ACT_RUNNER=$(command -v act_runner 2>/dev/null)
if [[ -z "$ACT_RUNNER" ]]; then
for _candidate in /act_runner /usr/local/bin/act_runner /usr/bin/act_runner; do
if [[ -x "$_candidate" ]]; then ACT_RUNNER="$_candidate"; break; fi
done
fi
if [[ -z "$ACT_RUNNER" ]]; then
echo "[ERROR] act_runner binary not found. Searched: /act_runner, /usr/local/bin/act_runner, /usr/bin/act_runner"
exit 1
fi
echo "[INFO] Using act_runner at: ${ACT_RUNNER}"
echo "[INFO] Reading configuration from ${CONFIG}..."