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
13 changes: 13 additions & 0 deletions .changesets/fix-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"branch": "fix/ci",
"bump": "patch",
"environments": [
"production"
],
"packages": [
"@websublime/delta"
],
"changes": [],
"created_at": "2026-04-16T17:29:10.360707Z",
"updated_at": "2026-04-16T17:29:10.362266Z"
}
File renamed without changes.
8 changes: 8 additions & 0 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
# A changeset is any `.json` file directly inside `.changesets/`. Files
# under `.changesets/history/` do NOT count — they represent already-
# released changesets. The `.yaml` example file is ignored by the glob.
#
# Skipped automatically in CI: the release workflow archives changesets
# into history/ before pushing the version-bump commit, so enforcing the
# check there would deadlock the release.

if [ "$CI" = "true" ] || [ -n "$GITHUB_ACTIONS" ]; then
exit 0
fi

CHANGESET_DIR=".changesets"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
workspace bump --execute --git-commit --git-tag --force
git push origin main --follow-tags
git push origin main --follow-tags --no-verify

- name: Publish to npm
if: steps.changesets.outputs.count > 0
Expand Down
Loading