Skip to content

Add automatic deployment GH Action #9

Add automatic deployment GH Action

Add automatic deployment GH Action #9

Workflow file for this run

name: Build HUGO website
on:
# Runs on pull requests to check that the website is building without errors
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: hugo-build
uses: klakegg/[email protected]
with:
source: ./src
target: ./build/blog
env: production
command: --verbose
- run: tree build
- name: upload-artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: ./build/blog