We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a140803 commit b910428Copy full SHA for b910428
1 file changed
.github/workflows/release.yml
@@ -7,10 +7,10 @@ permissions:
7
contents: write
8
9
env:
10
- WF_REGISTRY_USER: rhn_support_memodi
11
- WF_REGISTRY: quay.io/rhn_support_memodi
+ WF_REGISTRY_USER: netobserv+github_ci
+ WF_REGISTRY: quay.io/netobserv
12
WF_IMAGE: network-observability-operator
13
- WF_ORG: rhn_support_memodi
+ WF_ORG: netobserv
14
WF_MULTIARCH_TARGETS: amd64 arm64 ppc64le s390x
15
16
jobs:
@@ -30,8 +30,8 @@ jobs:
30
registry: quay.io
31
- name: validate tag
32
run: |
33
- tag="${GITHUB_REF_NAME}"
34
- if [[ $tag =~ ^[0-9]+\.[0-9]+\.[0-9]+(-crc[0-9]+|-community|-test.*)? ]]; then
+ tag=`git describe --exact-match --tags 2> /dev/null`
+ if [[ $tag =~ ^[0-9]+\.[0-9]+\.[0-9]+(-crc[0-9]+|-community)$ ]]; then
35
echo "$tag is a valid release tag"
36
set -e
37
echo "tag=$tag" >> $GITHUB_ENV
0 commit comments