Fixing the about-me and ideas-concepts pages #7
Workflow file for this run
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: GitHub Pages (Pull Request) | |
on: | |
pull_request: | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Setup hugo | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: "0.139.3" | |
extended: true | |
- name: Build | |
# remove --minify tag if you do not need it | |
# docs: https://gohugo.io/hugo-pipes/minification/ | |
run: hugo --environment=live |