File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -41,21 +41,21 @@ jobs:
41
41
images : |
42
42
ghcr.io/${{ github.repository }}
43
43
44
- - name : Build and push Docker images
44
+ - name : Build Docker images
45
45
id : push
46
46
uses : docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
47
47
with :
48
48
context : .
49
- push : true
49
+ load : true
50
+ pull : true
51
+ push : false
50
52
tags : ${{ steps.meta.outputs.tags }}
51
53
labels : ${{ steps.meta.outputs.labels }}
52
54
cache-from : type=registry,ref=${{ steps.meta.outputs.tags }}
53
55
cache-to : type=registry,ref=${{ steps.meta.outputs.tags }},mode=max
54
56
provenance : false
55
57
56
- # name: Generate artifact attestation
57
- # uses: actions/attest-build-provenance@v2
58
- # with:
59
- # subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
60
- # subject-digest: ${{ steps.push.outputs.digest }}
61
- # push-to-registry: true
58
+ - name : Push Docker images to ghcr.io
59
+ run : |
60
+ docker push ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.tags }}
61
+
You can’t perform that action at this time.
0 commit comments