From c8fc68a66b4f3b99c4cc5f682cbd78591fe07d1c Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Wed, 28 Jan 2026 09:23:15 +1100 Subject: [PATCH] ci: pull and tag Docker image as 'wails-cross' for task system The wails3 task system expects a locally tagged 'wails-cross' image. Pull from ghcr.io and tag it appropriately before running tasks. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/build-cross-image.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-cross-image.yml b/.github/workflows/build-cross-image.yml index 8b46d7c57..bb9d5fd53 100644 --- a/.github/workflows/build-cross-image.yml +++ b/.github/workflows/build-cross-image.yml @@ -167,6 +167,12 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Pull and tag Docker image + run: | + # Pull the image from ghcr.io and tag it as 'wails-cross' for the task system + docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.build.outputs.image_tag || 'latest' }} + docker tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.build.outputs.image_tag || 'latest' }} wails-cross + - name: Generate wails3 test project run: | cd /tmp