From 126aff723142391044e7fc2721da3eb497730e83 Mon Sep 17 00:00:00 2001 From: Alf Sebastian Houge Date: Tue, 24 Jan 2023 23:35:44 +0100 Subject: [PATCH] Update workflow action for publishing to new docker hub repo --- .github/workflows/hub.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/hub.yml b/.github/workflows/hub.yml index ddc1f11..709e493 100644 --- a/.github/workflows/hub.yml +++ b/.github/workflows/hub.yml @@ -38,8 +38,8 @@ jobs: uses: docker/login-action@v1 with: registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 with: @@ -52,7 +52,7 @@ jobs: # cache-from: type=local,src=/tmp/.buildx-cache # cache-to: type=local,dest=/tmp/.buildx-cache tags: | - akhilrex/hammond:latest - akhilrex/hammond:${{ steps.get_tag.outputs.TAG }} - ghcr.io/akhilrex/hammond:latest - ghcr.io/akhilrex/hammond:${{ steps.get_tag.outputs.TAG }} + alfhou/hammond:latest + alfhou/hammond:${{ steps.get_tag.outputs.TAG }} + ghcr.io/alfhou/hammond:latest + ghcr.io/alfhou/hammond:${{ steps.get_tag.outputs.TAG }}