diff --git a/.github/workflows/deploy_to_npm.yml b/.github/workflows/deploy_to_npm.yml index d1ba9f4..0166c24 100644 --- a/.github/workflows/deploy_to_npm.yml +++ b/.github/workflows/deploy_to_npm.yml @@ -37,8 +37,10 @@ jobs: id: create-tag run: | echo "INITIAL_MASTER_POSITION=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" - TAG=release-${{ steps.parse-version.outputs.current-version }} + VERSION=${{ steps.parse-version.outputs.current-version }} + TAG=release-${VERSION} echo "TAG=${TAG}" >> "$GITHUB_OUTPUT" + echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT" git tag ${TAG} git push origin tag ${TAG} diff --git a/package.json b/package.json index 2aad917..fdd5120 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cowwoc/requirements", - "version": "4.0.0", + "version": "4.0.1", "keywords": [ "preconditions", "postconditions",