Kernel Build #63
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: Kernel Build | |
| on: | |
| # Weekly auto-build | |
| schedule: | |
| - cron: "0 0 * * 1" | |
| workflow_dispatch: | |
| inputs: | |
| spec: | |
| description: 'Build Specification' | |
| type: string | |
| default: "new" | |
| required: true | |
| publish: | |
| description: 'Publish Builds' | |
| type: boolean | |
| default: true | |
| required: true | |
| # this job will publish images, and needs higher perms. | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/matrix.yml | |
| with: | |
| spec: ${{ inputs.spec }} | |
| publish: ${{ inputs.publish }} |