chore(deps-dev): bump the development-dependencies group across 1 dir… #311
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
| name: Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| # Manual dispatch, so the site can be published without waiting for a push and | |
| # so a deploy that never fired can be recovered by hand. Matches Baton's own | |
| # pages.yml, which carries the same pair of triggers. | |
| workflow_dispatch: | |
| concurrency: | |
| group: pages-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| uses: OpenPhysics/Baton/.github/workflows/deploy.yml@main | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write |