@theholocron/cli 2.0.0-alpha.15 → 2.0.0-alpha.16

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/dist/cli.mjs +4 -1
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -1112,7 +1112,10 @@ jobs:
1112
1112
  name: Checkout repository
1113
1113
  with:
1114
1114
  fetch-depth: 0
1115
- token: \${{ github.token }}
1115
+ # Use SYNC_TOKEN when available — git push (tags, release commits)
1116
+ # uses the checkout credential, not GITHUB_TOKEN env var. The
1117
+ # built-in github.token cannot push through branch protection rulesets.
1118
+ token: \${{ secrets.SYNC_TOKEN || github.token }}
1116
1119
 
1117
1120
  - uses: theholocron/.github/.github/actions/setup@main
1118
1121
  name: Setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/cli",
3
- "version": "2.0.0-alpha.15",
3
+ "version": "2.0.0-alpha.16",
4
4
  "description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",