Redesign fork lifecycle: one file owner, upstream or fork #15
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
| # Builds the site (feed.json + feed.ics + feed.xml + dashboard) and deploys | |
| # it to GitHub Pages. All logic lives in OpenTechEvents/ote-tools — this file | |
| # only calls it. @main will become @v1 once the reusable workflows stabilise. | |
| name: Publish | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| publish: | |
| uses: OpenTechEvents/ote-tools/.github/workflows/build-pages.yml@main |