Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
BASE_VERSION=$(node -p "require('./package.json').version")
SHORT_SHA=$(echo "$GITHUB_SHA" | cut -c1-7)
CANARY_VERSION="${BASE_VERSION}-canary.${SHORT_SHA}"
npm version "$CANARY_VERSION" --no-git-tag-version
npm version "$CANARY_VERSION" --no-git-tag-version --ignore-scripts
npm publish --tag canary --provenance --access public

release:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Bump version
id: version
run: |
npm version ${{ inputs.bump }} --no-git-tag-version
npm version ${{ inputs.bump }} --no-git-tag-version --ignore-scripts
VERSION=$(node -p "require('./package.json').version")
echo "version=$VERSION" >> "$GITHUB_OUTPUT"

Expand Down
Loading