Rename 2023开源操作系统训练营第三阶段项目一基本任务总结报告 to 2023开源操作系统训练营第三阶段项目一基本任务总结报告.md #598
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: auto-deploy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: build | |
run: | | |
node --version | |
npm --version | |
npm i -g hexo-cli | |
npm i | |
hexo --version | |
hexo clean | |
hexo generate | |
- name: deploy | |
if: github.event_name == 'push' | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: public |