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 54fca53 commit 72d0ac7Copy full SHA for 72d0ac7
docs/.github/workflows/push.yaml
@@ -1,7 +1,7 @@
1
on:
2
push:
3
branches:
4
- - master
+ - main
5
pull_request:
6
name: Build and deploy on push
7
jobs:
@@ -26,10 +26,10 @@ jobs:
26
- run: yarn docs:build
27
- name: Deploy to GitHub Pages
28
uses: JamesIves/github-pages-deploy-action@releases/v3
29
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
30
with:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
BRANCH: gh-pages
33
FOLDER: docs/.vuepress/dist
34
- BASE_BRANCH: master
+ BASE_BRANCH: main
35
CLEAN: true
0 commit comments