使用 Github Actions 部署 Pelican

Posted on Mon 13 July 2020 in misc

使用 Github 托管静态页面很方便,Pelican 也非常好用,但是每次发布都需要手动操作,从网上找到了使用Github Actions 自动发布页面的方法。此方法引用自这里

创建 Personal Token

这里创建Personal Token.

然后在project的Setting-Secrets添加一个 Name 是PERSONAL_TOKEN,Value 是刚才生成的Token的 Secrets。

创建 Actions

sources 分支添加.github/workflows/publish.yaml

name: Publish

on:
  push:
    branches:
      - sources

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v2
        with:
          python-version: "3.7"

      - name: Install Dependencies
        run: |
          python -m pip install --upgrade pip
          pip install -r requirements.txt
          git clone https://github.com/alexandrevicenzi/Flex.git
          pelican-themes -i Flex

      - name: Build Production Site
        run: |
          make publish
          cp README.md output/README.md
          touch output/.nojekyll

      - name: Deploy To Master Branch
        uses: peaceiris/actions-gh-pages@v3
        with:
          publish_branch: master
          publish_dir: ./output
          personal_token: ${{ secrets.PERSONAL_TOKEN }}