Skip to content

Build frequency: weekly #2

Build frequency: weekly

Build frequency: weekly #2

Workflow file for this run

name: 'Build frequency: weekly'
on:
schedule:
- cron: "30 04 * * 0" # 04:30 UTC every Sunday
workflow_dispatch:
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
recipe:
- images/kova-hypr/current/kova-hypr--current-weekly.yml
- images/kova-hypr/previous/kova-hypr--previous-weekly.yml
- images/kova/current/kova--current-weekly.yml
- images/kova/previous/kova--previous-weekly.yml
- images/silvara-hypr/current/silvara-hypr--current-weekly.yml
- images/silvara-hypr/previous/silvara-hypr--previous-weekly.yml
- images/silvara/current/silvara--current-weekly.yml
- images/silvara/previous/silvara--previous-weekly.yml
steps:
- name: Build Custom Image
uses: blue-build/github-action@v1.7
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}