Add README with deployment links #38
This file contains hidden or 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
| # workflow name | |
| name: Hexo Blog CI | |
| # master branch on push, auto run | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # check it to your workflow can access it | |
| # from: https://github.com/actions/checkout | |
| - name: Checkout Repository master branch | |
| uses: actions/checkout@master | |
| # from: https://github.com/actions/setup-node | |
| - name: Setup Node.js 12.x | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: "12.x" | |
| - name: Setup Hexo Dependencies | |
| run: | | |
| npm install hexo-cli -g | |
| npm install | |
| - name: Setup Deploy Private Key | |
| env: | |
| HEXO_DEPLOY_PRIVATE_KEY: ${{ secrets.mac }} | |
| run: | | |
| mkdir -p ~/.ssh/ | |
| echo "$HEXO_DEPLOY_PRIVATE_KEY" > ~/.ssh/id_rsa | |
| chmod 600 ~/.ssh/id_rsa | |
| ssh-keyscan github.com >> ~/.ssh/known_hosts | |
| - name: Setup Git Infomation | |
| run: | | |
| git config --global user.name 'xiaohutu' | |
| git config --global user.email 'shanxi.1991@gmail.com' | |
| - name: Deploy Hexo | |
| run: | | |
| hexo clean | |
| hexo generate | |
| hexo deploy | |
| - name: Deploy # step4 | |
| run: | | |
| git subtree push --prefix=public origin gh-pages --squash |