diff options
| author | Aiden Cline <[email protected]> | 2025-12-19 16:00:35 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-12-19 16:00:41 -0600 |
| commit | 89285d8f5fd6ca28bb91c2b0d523d898b3c5a566 (patch) | |
| tree | 235eb880d397c3cd31679f7e44769a45fbb89e8a /.github | |
| parent | 2e853911c33a5dbdf3fcdbd6da7be0380c936244 (diff) | |
| download | opencode-89285d8f5fd6ca28bb91c2b0d523d898b3c5a566.tar.gz opencode-89285d8f5fd6ca28bb91c2b0d523d898b3c5a566.zip | |
ci: fix publish auth failure
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 163b8a01a..77d7bb30e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -63,6 +63,12 @@ jobs: node-version: "24" registry-url: "https://registry.npmjs.org" + - name: Setup Git Identity + run: | + git config --global user.email "[email protected]" + git config --global user.name "opencode" + git remote set-url origin https://x-access-token:${{ secrets.SST_GITHUB_TOKEN }}@github.com/${{ github.repository }} + - name: Publish id: publish run: ./script/publish-start.ts |
