Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Check current package version
run: |
echo "CURRENT_VERSION=$(node -p 'require(\"./package.json\").version')" >> "$GITHUB_ENV"
echo "CURRENT_VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
echo "BASE_SHA=$(git rev-parse HEAD)" >> "$GITHUB_ENV"

- name: Bump package version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Validate package version matches tag
shell: bash
run: |
PACKAGE_VERSION="$(node -p 'require(\"./package.json\").version')"
PACKAGE_VERSION="$(node -p "require('./package.json').version")"
EXPECTED_TAG="v${PACKAGE_VERSION}"
if [ "${EXPECTED_TAG}" != "${RELEASE_TAG}" ]; then
echo "package.json version ${PACKAGE_VERSION} does not match tag ${RELEASE_TAG}"
Expand Down
Loading