We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce83565 commit d875e44Copy full SHA for d875e44
1 file changed
.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
32
- name: Set version number
33
run: |
34
# Set the version number for the build based on the tag or fallback to the branch name
35
- if (${{ inputs.tag }} -match '^v(\d+\.\d+\.\d+)$') {
+ if ("${{ inputs.tag }}" -match '^v(\d+\.\d+\.\d+)$') {
36
$version = $Matches[1]
37
} else {
38
$version = "0.0.0.1" # fallback version if no tag is provided
0 commit comments