We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff91770 + d11488e commit aca4e11Copy full SHA for aca4e11
.github/workflows/update-tags.yaml
@@ -4,7 +4,7 @@ on: # yamllint disable-line rule:truthy
4
workflow_dispatch:
5
inputs:
6
new_tag:
7
- description: "Set a new image tag (e.g. YYYYx-vn.n)"
+ description: "Set a new image tag (e.g. 3.4_ea1-v1.41 or 2025a-v1.41)"
8
required: true
9
jobs:
10
update-tags:
@@ -24,7 +24,8 @@ jobs:
24
id: replace
25
run: |
26
set -e
27
- regex="[0-9]{4}[a-z]-v[0-9]+\.[0-9]+"
+ # Updated regex to match both old (2025a-v1.41) and new (3.4_ea1-v1.41) tag patterns
28
+ regex="([0-9]{4}[a-z]|[0-9]+\.[0-9]+(_ea[0-9]+)?)-v[0-9]+\.[0-9]+"
29
new_tag="${{ github.event.inputs.new_tag }}"
30
31
echo "Searching for tags in .tekton/*.yaml..."
0 commit comments