Skip to content

Commit cc6d3d8

Browse files
committed
Fix tag matching in workflows
1 parent a8d36ed commit cc6d3d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88
branches:
99
- master
10-
- releases/*
10+
- 'v*'
1111
paths-ignore:
1212
- '**.md'
1313

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- master
7-
- releases/*
7+
- 'v*'
88

99
env:
1010
REGISTRY: ghcr.io

helm/promviz/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ storage:
1919
promviz:
2020
image:
2121
repository: ghcr.io/nghialv/promviz
22-
tag: v0.2.0
22+
tag: v0.3.0
2323
pullPolicy: Always
2424
log:
2525
level: info

0 commit comments

Comments
 (0)