Skip to content

Commit a8e3af5

Browse files
ci(docker-image): fix push tag match
1 parent c2c4df9 commit a8e3af5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker-image.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
tags:
6-
- 'v(\.?[0-9]+){3}(-[a-z0-9]+)?'
6+
- 'v[0-9]+.[0-9]+.[0-9]+*'
77

88
jobs:
99
bake:
@@ -29,5 +29,6 @@ jobs:
2929
uses: docker/bake-action@v6
3030
with:
3131
push: true
32+
files: docker-bake.hcl
3233
set: |
33-
${{ env.image_name }}.tags=[${{ env.org_name }}/${{ env.image_name }}:${{ github.ref_name }}]
34+
${{ env.image_name }}.tags=${{ env.org_name }}/${{ env.image_name }}:${{ github.ref_name }}

0 commit comments

Comments
 (0)