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 258eacd commit fe55996Copy full SHA for fe55996
.github/workflows/nuget.yml
@@ -16,7 +16,7 @@ jobs:
16
id: check-version
17
run: |
18
version="${{ github.event.inputs.version }}"
19
- if [[ $version =~ [0-9]\.[0-9]\.[0-9]\.[0-9]+ ]]; then
+ if [[ $version =~ [0-9]\.[0-9]\.[0-9]+ ]]; then
20
echo "Input matches pattern: $version"
21
else
22
echo "Input does not match pattern: $version"
.github/workflows/release.yml
@@ -2,7 +2,7 @@ name: Release
2
on:
3
push:
4
tags:
5
- - '[0-9]\.[0-9]\.[0-9]\.[0-9]+'
+ - '[0-9]\.[0-9]\.[0-9]+'
6
7
jobs:
8
build:
0 commit comments