We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2943536 commit bbadbc7Copy full SHA for bbadbc7
1 file changed
.github/workflows/deploy.yaml
@@ -3,6 +3,9 @@ name: Build and Deploy
3
on:
4
workflow_call:
5
workflow_dispatch:
6
+ push:
7
+ branches:
8
+ - master
9
10
jobs:
11
build-and-deploy:
@@ -34,7 +37,7 @@ jobs:
34
37
35
38
- name: Deploy to external repository
36
39
uses: peaceiris/actions-gh-pages@v3
- if: github.ref == 'refs/heads/main'
40
+ if: github.ref == 'refs/heads/master'
41
with:
42
github_token: ${{ secrets.GITHUB_TOKEN }}
43
publish_dir: ./out
0 commit comments