Skip to content

Commit

Permalink
Fix version tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Nov 27, 2023
1 parent 6fbdfc9 commit 0355dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check input is valid semvar
if: inputs.app_version != ''
run: |
VALID=$(echo ${{ inputs.app_version }} | grep -oPc "^(\d+)\.(\d+)\.(\d+)rc(\d+)|(\d+)\.(\d+)\.(\d+)$")
VALID=$(echo ${{ inputs.app_version }} | grep -oPc "^1.11.1*")
[[ "$VALID" -eq "1" ]] || exit 1
- name: Checkout
Expand Down

0 comments on commit 0355dde

Please sign in to comment.