From c7baf6a549efa8ea47a3abca6fae77f2bf2b797c Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 3 Nov 2022 11:55:59 +0100 Subject: [PATCH] Fix Docker build context URL --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d72044aa1..f8ba48cde 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -332,7 +332,7 @@ jobs: set: | base.platform=linux/amd64 base.cache-from=type=registry,ref=${{ env.IMAGE }}:buildcache - source: https://github.com/${{ github.repository }}#${{ github.ref }} + source: https://github.com/${{ github.repository }}.git#${{ github.ref }} - name: Build and push uses: docker/bake-action@v2 @@ -346,7 +346,7 @@ jobs: base.output=type=image,push=true base.cache-from=type=registry,ref=${{ env.IMAGE }}:buildcache base.cache-to=type=registry,ref=${{ env.IMAGE }}:buildcache,mode=max - source: https://github.com/${{ github.repository }}#${{ github.ref }} + source: https://github.com/${{ github.repository }}.git#${{ github.ref }} - name: Sign the images with GitHub Actions provided token # Only sign on tags and on commits on main branch