From 2f3e3c3f23fff4e65ac79f12ee2b83d85a3f3524 Mon Sep 17 00:00:00 2001 From: Ryan Goree Date: Wed, 20 Dec 2023 01:16:24 -0600 Subject: [PATCH] Last parse action test? --- .github/actions/parse-ref-semver/action.yml | 4 ++-- .github/workflows/test-parse-action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/parse-ref-semver/action.yml b/.github/actions/parse-ref-semver/action.yml index 17276e0..02c6ced 100644 --- a/.github/actions/parse-ref-semver/action.yml +++ b/.github/actions/parse-ref-semver/action.yml @@ -9,9 +9,9 @@ outputs: description: The ref that was parsed matched: description: \"true\" if the ref matched the semver pattern, \"false\" otherwise - package-scope: + scope: description: The package scope (if any) from the tag (e.g. @scope/package-name@v1.2.3 -> scope) - package-name: + name: description: The package name (if any) from the tag (e.g. @scope/package-name@v1.2.3 -> package-name) major: description: The major version from the tag (e.g. v1.2.3 -> 1) diff --git a/.github/workflows/test-parse-action.yml b/.github/workflows/test-parse-action.yml index 331a88e..b4dd5a6 100644 --- a/.github/workflows/test-parse-action.yml +++ b/.github/workflows/test-parse-action.yml @@ -20,8 +20,8 @@ jobs: run: | echo "ref=${{ steps.parse.outputs.ref }}" echo "matched=${{ steps.parse.outputs.matched }}" - echo "package-scope=${{ steps.parse.outputs.package-scope }}" - echo "package-name=${{ steps.parse.outputs.package-name }}" + echo "scope=${{ steps.parse.outputs.scope }}" + echo "name=${{ steps.parse.outputs.name }}" echo "major=${{ steps.parse.outputs.major }}" echo "minor=${{ steps.parse.outputs.minor }}" echo "patch=${{ steps.parse.outputs.patch }}"