28 lines
781 B
YAML
28 lines
781 B
YAML
name: Hugo Update Pipeline
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
additionalProp1:
|
|
required: true
|
|
default: 'cat'
|
|
type: string
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: echo dispatch inputs
|
|
run: echo ${{ inputs.additionalProp1 }}
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive # Fetch Hugo themes (true OR recursive)
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
- name: Install Hugo
|
|
uses: peaceiris/actions-hugo@v3
|
|
with:
|
|
hugo-version: 'latest'
|
|
# extended: true
|
|
- name: Build
|
|
run: hugo --minify |