We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea338ea commit 0b27760Copy full SHA for 0b27760
.github/workflows/gh-pages-deploy.yml
@@ -25,8 +25,13 @@ jobs:
25
- name: Build
26
run: npm run build
27
28
- - name: Merge from master
29
- run: git checkout gh-pages && git merge master
+ - name: Merge master -> gh-pages
+ uses: devmasx/merge-branch@master
30
+ with:
31
+ type: now
32
+ from_branch: master
33
+ target_branch: gh-pages
34
+ github_token: ${{ secrets.GITHUB_TOKEN }}
35
36
- name: Deploy to GitHub Pages
37
uses: peaceiris/actions-gh-pages@v3
0 commit comments