This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
only-build #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |