docs-build #4
Workflow file for this run
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: docs-build | |
on: | |
push: # Build on all pushes but only deploy for main branch | |
pull_request: # Build on all PRs regardless what branch | |
workflow_dispatch: # Allow this task to be manually started (you'll never know) | |
jobs: | |
ci: | |
name: Run build | |
runs-on: ubuntu-latest | |
if: github.event_name != 'push' || (github.event_name == 'push' && github.ref != 'refs/heads/main') | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: true # Fetch Hugo themes (true OR recursive) | |
- name: Build site | |
uses: ./.github/actions/build_site |