From 589b631a79f0adfb556781ba22fcaf640ab3741c Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Wed, 4 Dec 2024 07:41:24 -0700 Subject: [PATCH] gha: Fix publish Fixes a place where the publish was not converted to use ghcr --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index deb8aa4..ec3c469 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -148,6 +148,6 @@ jobs: if [ "$TAG" = "master" ]; then TAG="latest" fi - docker tag ghcr.io/garmin/${{ matrix.image }}:ci-test garminpyrex/${{ matrix.image }}:$TAG + docker tag ghcr.io/garmin/${{ matrix.image }}:ci-test ghcr.io/garmin/${{ matrix.image }}:$TAG docker push ghcr.io/garmin/${{ matrix.image }}:$TAG if: ${{ ( github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master' ) && github.event_name == 'push' && matrix.provider == 'docker' }}