Skip to content

Deploy Hugo Site

Deploy Hugo Site #11

Workflow file for this run

name: Deploy Hugo Site
on:
workflow_dispatch:
# REMOVING AUTO-BUILD BECAUSE IT CAUSES SITE TO GO DOWN
# push:
# branches:
# - main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
- name: Build
run: hugo
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./public