Skip to content

Commit 840696a

Browse files
authored
Merge pull request #1162 from keynslug/fix/ci/release-workflow
fix(ci): ensure release workflow picks up correct tags
2 parents 327e93e + 8396c4e commit 840696a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- '*'
77
workflow_dispatch:
88
inputs:
99
branch:
@@ -45,7 +45,7 @@ jobs:
4545
tags: |
4646
type=ref,event=branch
4747
type=semver,pattern={{version}},value=${{ env.RELEASE_VERSION }}
48-
type=semver,pattern={{major}}.{{minor}},value=${{ env.RELEASE_VERSION }},
48+
type=semver,pattern={{major}}.{{minor}},value=${{ env.RELEASE_VERSION }}
4949
5050
- uses: docker/build-push-action@v5
5151
with:

0 commit comments

Comments
 (0)