Tech note about labeling non-software projects on GitHub (#836) #19
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
# This workflow is not a blocker but to identify issues with upcoming hugo versions | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
name: Test build with latest Hugo | |
jobs: | |
build: | |
name: Test build with latest hugo | |
runs-on: macOS-latest | |
steps: | |
- name: Install latest hugo | |
run: brew install hugo || true | |
- uses: actions/checkout@v4 | |
- name: Build the website | |
run: hugo --minify --buildFuture |