Compare commits

..

2 Commits

Author SHA1 Message Date
uazo
0978237d5c add ephemeral to runner config 2022-02-18 16:08:27 +01:00
uazo
94ad7d9a1d Update to runner v2.302.5 2022-02-18 12:52:34 +00:00
2 changed files with 4 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ RUN useradd -m runner \
# Build args
ARG TARGETPLATFORM=amd64
ARG RUNNER_VERSION=2.302.4
ARG RUNNER_VERSION=2.302.5
WORKDIR /runner
# Runner download supports amd64 as x64

View File

@@ -48,7 +48,9 @@ echo "Registering runner ${runner_id}"
--url "${registration_url}" \
--allowedauthorslist "${ALLOWEDAUTHORSLIST}" \
--unattended \
--replace
--replace \
--disableupdate \
--ephemeral
trap 'remove_runner; exit 130' SIGINT
trap 'remove_runner; exit 143' SIGTERM