【修复】PJAX 与语法高亮主题适配 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14' | |
- run: npm install | |
- run: npx hexo | |
- name: Override changes | |
run: | | |
cp -vrf override_changes/* node_modules/hexo-theme-icarus/ | |
- run: NODE_ENV=production npx hexo g | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: public |