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 ca4570f commit 0e99ee2Copy full SHA for 0e99ee2
.github/workflows/deploy.yml
@@ -40,16 +40,16 @@ jobs:
40
# publish_dir: ./build
41
# publish_branch: gh-pages
42
43
- - name: Deploy to build-output branch
+ - name: Deploy to gh-pages branch
44
run: |
45
git config --global user.name "liss-bot"
46
git config --global user.email "alicia-gh-bot@mail.as93.net"
47
- git fetch origin build-output || true
+ git fetch origin gh-pages || true
48
git switch --orphan temp-deploy
49
git reset
50
cp -r build/* .
51
touch .nojekyll
52
git add .
53
git commit -m "Deploy static site"
54
- git push --force origin temp-deploy:build-output
+ git push --force origin temp-deploy:gh-pages
55
0 commit comments