File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -43,16 +43,21 @@ jobs:
4343 with :
4444 token : ${{ secrets.CODECOV_TOKEN }}
4545
46- - name : Release & deploy to GitHub Pages
46+ - name : Release
4747 run : |
4848 git config --global user.name $USER_NAME
4949 git config --global user.email $USER_EMAIL
5050 git remote set-url origin https://${GITHUB_TOKEN}@github.com/${REPOSITORY}
5151 yarn release
52- node node_modules/gh-pages/bin/gh-pages-clean
53- yarn deploy -m "${{ github.event.head_commit.message }}"
5452 env :
5553 USER_NAME : ' github-actions[bot]'
5654 USER_EMAIL : ' github-actions[bot]@users.noreply.github.com'
5755 GITHUB_TOKEN : ${{ github.token }}
5856 REPOSITORY : ${{ github.repository }}
57+
58+ - name : Deploy to GitHub Pages
59+ run : |
60+ node node_modules/gh-pages/bin/gh-pages-clean
61+ yarn deploy -m "${{ github.event.head_commit.message }}"
62+ env :
63+ GITHUB_TOKEN : ${{ secrets.DEPLOY_ACCESS_TOKEN }}
You can’t perform that action at this time.
0 commit comments