Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

only-build

only-build #88

Workflow file for this run

name: only-build
on:
workflow_dispatch:
branches:
- master
schedule:
- cron: '0 3 * * *'
jobs:
build-hugo:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Setup Go
uses: actions/[email protected]
with:
go-version: '^1.21'
- name: SetUp Env
run: hugo new site testenv
- name: Set theme
uses: actions/checkout@v3
with:
path: ./testenv/themes/hugo-theme-shell
- name: Build
run: hugo --minify -t hugo-theme-shell
working-directory: ./testenv