Trigger build #5
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: Build a Pelican Website | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'content/**' # can this vary? | |
permissions: | |
contents: write # needed to commit updates to the output branch | |
jobs: | |
build-pelican: | |
runs-on: ubuntu-latest | |
steps: | |
# - uses: 'apache/infrastructure-actions/build-pelican@main' | |
# Need temporary overrides because PR not yet applied | |
- uses: 'apache/infrastructure-actions/build-pelican@simplify' # Temp override | |
with: | |
destination: 'sebb/gha-site' |