We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f779d28 commit f71bf60Copy full SHA for f71bf60
.github/workflows/main.yml
@@ -47,7 +47,10 @@ jobs:
47
run: |
48
cd target/doc
49
git init
50
+ git remote add origin https://x-access-token:${{ secrets.github_token }}@github.com/${{ github.repository }}
51
+ git fetch origin
52
+ git reset --hard "origin/gh-pages^" --
53
git add .
54
git -c user.name='ci' -c user.email='ci' commit -m init
- git push -f -q https://x-access-token:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages
55
+ git push -f -q origin HEAD:gh-pages
56
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
0 commit comments