Skip to content

Commit

Permalink
Adds back version checking
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-quintero committed Sep 24, 2024
1 parent 5ff8639 commit ac4ea5f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@ jobs:
permissions:
contents: write
steps:
- name: ensure proper tagging
run: |
echo "If it's a pre-release, the version should contain a hyphen"
if [ ${{ inputs.IS_PRE_RELEASE }} = true ]; then
if [[ $VERSION != *-* ]]; then
echo "Pre-release versions should contain a hyphen"
exit 1
fi
else
if [[ $VERSION == *-* ]]; then
echo "Release versions should not contain a hyphen"
exit 1
fi
fi
- name: ensure version is not already released
run: |
if git ls-remote --tags origin | grep -q "refs/tags/$VERSION"; then
Expand Down

0 comments on commit ac4ea5f

Please sign in to comment.