From a0ca2b30616e7e44ecba1ff94467f104541fec77 Mon Sep 17 00:00:00 2001 From: SweetMNM <44876816+SweetMNM@users.noreply.github.com> Date: Tue, 7 Jun 2022 21:59:47 +0300 Subject: [PATCH] :circus_tent: Fix gchr username error --- .github/workflows/release.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b3eb0eb..afbadea 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,13 +21,18 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Log into GitHub Container Registry run: echo "${{ secrets.REGISTRY_ACCESS_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin + - name: Lowercase github username for ghcr + id: string + uses: ASzc/change-string-case-action@v1 + with: + string: ${{ github.actor }} - name: Build and push uses: docker/build-push-action@v2 with: platforms: linux/amd64,linux/arm64 push: true - tags: ghcr.io/${{ github.actor }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} - cache-from: type=registry,ref=ghcr.io/${{ github.actor }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} + tags: ghcr.io/${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} + cache-from: type=registry,ref=ghcr.io/${{ github.actor }}${{ steps.string.outputs.lowercase }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }} cache-to: type=inline build-args: | IMAGE_NAME=${{ env.IMAGE_NAME }}