ci: migrate to 4-job pipeline with SHA-pinned actions #4

Merged
jcabillot merged 4 commits from feat/gitea-actions-v2 into main 2026-06-08 21:11:56 -04:00
Showing only changes of commit 1f6af1d401 - Show all commits
+1
View File
@@ -3,6 +3,7 @@ FROM alpine:3.23
ARG VERSION=3.1.0 ARG VERSION=3.1.0
ARG TARGETARCH=x64 ARG TARGETARCH=x64
# hadolint ignore=DL3018
RUN apk add --no-cache curl && \ RUN apk add --no-cache curl && \
if [ "$TARGETARCH" == "amd64" ]; then export TARGETARCH="x64"; fi; wget --no-verbose -O /usr/local/bin/duplicacy "https://github.com/gilbertchen/duplicacy/releases/download/v${VERSION}/duplicacy_linux_${TARGETARCH}_${VERSION}" && \ if [ "$TARGETARCH" == "amd64" ]; then export TARGETARCH="x64"; fi; wget --no-verbose -O /usr/local/bin/duplicacy "https://github.com/gilbertchen/duplicacy/releases/download/v${VERSION}/duplicacy_linux_${TARGETARCH}_${VERSION}" && \
chmod 777 /usr/local/bin/duplicacy && \ chmod 777 /usr/local/bin/duplicacy && \