Skip to content

Commit

Permalink
Last parse action test?
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Dec 20, 2023
1 parent 0e3dbf8 commit 2f3e3c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/parse-ref-semver/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-parse-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down

0 comments on commit 2f3e3c3

Please sign in to comment.