We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ca352 commit d62f434Copy full SHA for d62f434
.github/workflows/llmcodereview.yml
@@ -115,9 +115,13 @@ jobs:
115
git config user.email "gemini@actions"
116
git add report*.html report.html
117
git commit -m "Add Gemini code report" || echo "No changes to commit"
118
-
+
119
# Add GitHub Pages repo as remote
120
git remote add pages https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/Mod-Sauce/mod-sauce.github.io.git
121
122
+ # Fetch main branch (create if missing)
123
+ git fetch pages main || git checkout --orphan main
124
+ git reset pages/main || true
125
126
# Push to main branch
- git push pages main
127
+ git push pages HEAD:main --force
0 commit comments