From 0f09cee645c7629744d42a03eff5cee22a63b204 Mon Sep 17 00:00:00 2001 From: Erik Pragt Date: Sat, 26 Oct 2024 21:08:55 +1100 Subject: [PATCH] Fix text in version validation. (#1408) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5f5d8aea6..9447d55c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Validation for release version run: | - echo "Validating that release version ${{ github.event.inputs.tag }} is a version in the correct format according to semver (MAJOR.MINOR.PATCH)" + echo "Validating that release version ${{ github.event.inputs.release_version }} is a version in the correct format according to semver (MAJOR.MINOR.PATCH)" echo "${{ github.event.inputs.release_version }}" | grep -P '^2\.[0-9]+\.[0-9]+$' - uses: actions/checkout@v4