File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 61
61
type=raw,value=latest,enable={{is_default_branch}}
62
62
- name : Extract metadata (tags, labels) for Docker
63
63
if : ${{ ! startsWith(github.ref, 'refs/tags/') }} && github.event_name != 'pull_request'
64
- id : meta
64
+ id : meta-tag
65
65
uses : docker/metadata-action@v5
66
66
with :
67
67
images : ${{ matrix.image }}
78
78
push : ${{ github.event_name != 'pull_request' }}
79
79
tags : ${{ steps.meta.outputs.tags }}
80
80
labels : ${{ steps.meta.outputs.labels }}
81
+ - name : Build and push tags
82
+ uses : docker/build-push-action@v5
83
+ with :
84
+ context : .
85
+ file : ${{ matrix.dockerfile }}
86
+ push : ${{ ! startsWith(github.ref, 'refs/tags/') }} && github.event_name != 'pull_request'
87
+ tags : ${{ steps.meta-tag.outputs.tags }}
88
+ labels : ${{ steps.meta-tag.outputs.labels }}
You can’t perform that action at this time.
0 commit comments