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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
cd packages/sunpeak
NEW_VERSION=$(pnpm version patch --no-git-tag-version | tail -n 1)
NEW_VERSION=${NEW_VERSION#v}
pnpm version patch --no-git-tag-version
NEW_VERSION=$(node -p "require('./package.json').version")
cd ../..
git add packages/sunpeak/package.json
git commit -m "chore: bump version to $NEW_VERSION [skip ci]"
git tag v$NEW_VERSION
git tag "v$NEW_VERSION"
git push origin main
git push origin v$NEW_VERSION
git push origin "v$NEW_VERSION"
Loading