ci: push latest
Build docker images. / build-wordle-solver-image (push) Successful in 44s
Build docker images. / build-wordle-solver-web-image (push) Successful in 5m21s

This commit is contained in:
2026-09-08 18:24:46 +02:00
parent 911ae77516
commit a827bd5eef
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ skopeo copy \
"docker-archive:result" \
"docker://${IMAGE}"
if [ "${GITEA_REF_TYPE:-}" = "branch" ] && [ "${GITEA_REF_NAME:-}" = "main" ]; then
if [ "${REF_NAME:-}" = "main" ]; then
skopeo copy \
--dest-creds "${USERNAME}:${PASSWORD}" \
"docker-archive:result" \
+2
View File
@@ -21,6 +21,7 @@ jobs:
REPOSITORY: "${{ gitea.repository }}"
USERNAME: "${{ secrets.REGISTRY_USER }}"
PASSWORD: "${{ secrets.REGISTRY_TOKEN }}"
REF_NAME: "${{ gitea.ref_name }}"
TAG: "${{ gitea.sha }}"
run: bash .gitea/scripts/push-image.sh
@@ -41,5 +42,6 @@ jobs:
REPOSITORY: "${{ gitea.repository }}-web"
USERNAME: "${{ secrets.REGISTRY_USER }}"
PASSWORD: "${{ secrets.REGISTRY_TOKEN }}"
REF_NAME: "${{ gitea.ref_name }}"
TAG: "${{ gitea.sha }}"
run: bash .gitea/scripts/push-image.sh