bOS Build Server #144
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: bOS Build Server | |
on: | |
schedule: | |
- cron: "41 6 * * 0" # 6:41 UTC Sunday | |
- cron: "41 6 * * 1,2,3,4,5,6" # 6:41 UTC Monday-Saturday | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
workflow_call: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
jobs: | |
build-image: | |
name: Build Images | |
uses: ./.github/workflows/build-image.yml | |
secrets: inherit | |
strategy: | |
fail-fast: false | |
matrix: | |
image_flavor: ["Server"] | |
with: | |
image_flavor: ${{ matrix.image_flavor }} | |