Switch to a reusable workflow #147
Workflow file for this run
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-custom-silverblue | ||
on: | ||
pull_request: | ||
merge_group: | ||
schedule: | ||
- cron: '5 3 * * *' # 3am-ish UTC everyday (timed against official fedora container pushes) | ||
workflow_dispatch: | ||
jobs: | ||
build-custom-silverblue: | ||
Check failure on line 10 in .github/workflows/build.yaml GitHub Actions / build-custom-silverblueInvalid workflow file
|
||
uses: ./.github/workflows/reusable-build.yaml | ||
with: | ||
containerfile_path: ./Containerfile | ||
registry: ghcr.io | ||
namespace: samhclark | ||
image_name: custom-silverblue | ||
tags: | | ||
${{ github.sha }} | ||
40 | ||
secrets: | ||
cosign_password: ${{ secrets.COSIGN_PASSWORD }} | ||
cosign_private_key: ${{ secrets.COSIGN_PRIVATE_KEY }} |