@wipcomputer/deploy-public 1.9.66 → 1.9.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/deploy-public.sh +2 -1
  2. package/package.json +1 -1
package/deploy-public.sh CHANGED
@@ -99,6 +99,7 @@ rsync -a \
99
99
  --exclude='.git/' \
100
100
  --exclude='.DS_Store' \
101
101
  --exclude='.wrangler/' \
102
+ --exclude='.worktrees/' \
102
103
  --exclude='.claude/' \
103
104
  --exclude='CLAUDE.md' \
104
105
  "$PRIVATE_REPO/" "$TMPDIR/public/"
@@ -123,7 +124,7 @@ fi
123
124
  BRANCH="$HARNESS_ID/deploy-$(date +%Y%m%d-%H%M%S)"
124
125
 
125
126
  git add -A
126
- git commit -m "$COMMIT_MSG (from $COMMIT_HASH)"
127
+ git commit --no-verify -m "$COMMIT_MSG (from $COMMIT_HASH)"
127
128
 
128
129
  if [[ "$EMPTY_REPO" == "true" ]]; then
129
130
  # Empty repo: push directly to main (no base branch to PR against)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/deploy-public",
3
- "version": "1.9.66",
3
+ "version": "1.9.68",
4
4
  "description": "Private-to-public repo sync. Excludes ai/ folder, creates PR, merges, cleans up branches.",
5
5
  "bin": {
6
6
  "deploy-public": "./deploy-public.sh"