chore: build images closer to Fedora's pushes, remove versioning actions #38
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: 'Build frequency: weekly-git' | |
on: | |
schedule: | |
- cron: "15 05 * * 0" # 05:15 UTC every Sunday | |
push: | |
paths-ignore: | |
- '/toolboxes/**' | |
- "**.md" | |
branches-ignore: | |
- 'dependabot**' | |
- 'compiler' | |
pull_request: | |
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-git.yml | |
- images/kova-hypr/previous/kova-hypr--previous-weekly-git.yml | |
- images/kova/current/kova--current-weekly-git.yml | |
- images/kova/previous/kova--previous-weekly-git.yml | |
- images/silvara-hypr/current/silvara-hypr--current-weekly-git.yml | |
- images/silvara-hypr/previous/silvara-hypr--previous-weekly-git.yml | |
- images/silvara/current/silvara--current-weekly-git.yml | |
- images/silvara/previous/silvara--previous-weekly-git.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 }} |