From f5bbb36144a4822f411fb7202363ffc96ea7e307 Mon Sep 17 00:00:00 2001 From: Abner Rizzi Date: Thu, 10 Aug 2023 15:44:38 -0300 Subject: [PATCH] testing --- .github/workflows/build-push-ghcr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-push-ghcr.yml b/.github/workflows/build-push-ghcr.yml index 6b907fa..6ee8ace 100644 --- a/.github/workflows/build-push-ghcr.yml +++ b/.github/workflows/build-push-ghcr.yml @@ -29,13 +29,13 @@ jobs: context: . file: Dockerfile.base push: true - tags: ghcr.io/${{ REPO_NAME }}:${{ github.sha }} + tags: ghcr.io/${REPO_NAME}:${{ github.sha }} - name: Docker image metadata id: image_meta uses: docker/metadata-action@v4 with: - images: ghcr.io/${{ REPO_NAME }} + images: ghcr.io/${REPO_NAME} flavor: latest=true tags: | type=sha @@ -48,7 +48,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Push metadata to image - run: docker push ghcr.io/${{ REPO_NAME }} + run: docker push ghcr.io/${REPO_NAME} - name: Push tags to image run: docker push ${{ steps.image_meta.outputs.tags }}