CU #163
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: Build Hugo site | |
on: | |
push: | |
branches: [ '*' ] | |
jobs: | |
transform: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Update submodules | |
run: | | |
git pull --recurse-submodules --depth 1 | |
git submodule update --recursive --remote | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "0.105.0" | |
# extended: true | |
# Step 3 - Clean and don't fail | |
- name: Clean build_github directory | |
run: rm -rf build_github | |
- name: Build hugo site pages | |
run: | | |
hugo | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build_github |