Skip to content

Finally start collecting and displaying useful/verified data #44

Finally start collecting and displaying useful/verified data

Finally start collecting and displaying useful/verified data #44

Workflow file for this run

name: Deploy Site
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
#- name: Pull Submodules (themes)
# run: git submodule update --init --recursive
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: latest
- name: Build Site
run: make
- name: Deploy Changes
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site