Skip to content

Adding Simon Wardley's tweet #71

Adding Simon Wardley's tweet

Adding Simon Wardley's tweet #71

Workflow file for this run

name: CI
on: push
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
ref: 'source'
submodules: 'recursive'
- name: Update theme
# (Optional)If you have the theme added as submodule, you can pull it and use the most updated version
run: git submodule update --init --recursive
- 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
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
# keep_files: true
user_name: truemped
user_email: [email protected]
publish_branch: master
# cname: example.com