[update slug] #6
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: Deploy Zola site to GitHub Pages | |
on: | |
push: | |
branches: | |
- master # 触发部署的分支 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Zola | |
run: | | |
wget https://github.com/getzola/zola/releases/download/v0.19.2/zola-v0.19.2-x86_64-unknown-linux-gnu.tar.gz | |
tar -xzf zola-v0.19.2-x86_64-unknown-linux-gnu.tar.gz | |
sudo mv zola /usr/local/bin | |
- name: Build site | |
run: zola build | |
- name: Deploy to GitHub Pages | |
uses: shalzz/zola-deploy-action@master | |
env: | |
PAGES_BRANCH: gh-pages | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |