ci: update the name of the step of validating the extracted version format in publish.yml

pull/1890/head
Ellet 11 months ago
parent 1b9a45b8e6
commit a6b8048a11
  1. 2
      .github/workflows/publish.yml

@ -62,7 +62,7 @@ jobs:
version=$(echo ${GITHUB_REF} | sed 's/^refs\/tags\/v\(.*\)$/\1/')
echo "VERSION=${version}" >> $GITHUB_OUTPUT
- name: ✅ Validate version format
- name: ✅ Validate extracted version format (should be pubspec.yaml valid version)
run: |
version=${{ steps.extract_version.outputs.VERSION }}
if [[ ! $version =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?(\+[0-9A-Za-z.-]+)?$ ]]; then

Loading…
Cancel
Save