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 874a405 commit e323480Copy full SHA for e323480
.github/workflows/ci-tag.yml
@@ -3,7 +3,6 @@
3
tags:
4
- '[0-9]+.[0-9]+.[0-9]+'
5
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
6
- - '[0-9]+.[0-9]+.[0-9]+-preview.[0-9]+'
7
8
name: ci-tag
9
@@ -22,7 +21,7 @@ jobs:
22
21
with:
23
repository: ${{ github.repository }}
24
# Ignore preview or RC tags when searching for the latest
25
- regex: '^\d+\.\d+\.\d+$'
+ regex: '^[0-9]+.[0-9]+.[0-9]+$'
26
releases-only: false
27
- name: Set output
28
run: echo "latest-tag=${{ steps.latest-tag.outputs.tag }}"
@@ -39,7 +38,7 @@ jobs:
39
38
continue-on-error: true
40
41
42
- regex: '^\d+\.\d+\.\d+-rc\.\d+$'
+ regex: '^[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+$'
43
44
45
run: echo "latest-rc=${{ steps.latest-rc.outputs.tag }}"
0 commit comments