infra: simplify Makefile (#151) #72
This file contains hidden or 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 runs the pelican build process after any branch has merged | |
| # into main and pushes the result to the branch `asf-site`. | |
| name: Publish main | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| build-pelican: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: pip install MarkupSafe==2.0.1 | |
| - uses: apache/infrastructure-actions/pelican@main | |
| with: | |
| destination: 'asf-site' | |
| gfm: 'false' |