Skip to content

Add GitHub Sponsors and Liberapay links #18

Add GitHub Sponsors and Liberapay links

Add GitHub Sponsors and Liberapay links #18

Workflow file for this run

name: Push to GitHub Pages on push to main
on:
push:
branches:
- main
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
- name: Build
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site