Skip to content

Commit 249bd87

Browse files
fdesbiensclaude
andcommitted
Fixed publish push by targeting explicit branch refspec
The freshly created local branch had no upstream, so a bare 'git push origin' aborted with exit 128. Push HEAD to the named branch explicitly instead. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 1f0d842 commit 249bd87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ jobs:
5555
COMMIT_MESSAGE="Publish generated html pages from ${{ github.repository }}/${{ github.ref }}@${{ github.sha }}"
5656
git add .
5757
git commit -m "${COMMIT_MESSAGE}"
58-
git push origin
58+
git push origin HEAD:${{ github.ref_name }}

0 commit comments

Comments
 (0)