Skip to content

feat: add initial minimal example #1

feat: add initial minimal example

feat: add initial minimal example #1

Workflow file for this run

name: bluebuild
on:
push:
paths-ignore: # don't rebuild if only documentation has changed
- "**.md"
pull_request:
workflow_dispatch: # allow manually triggering builds
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false # stop GH from cancelling all matrix builds if one fails
matrix:
recipe:
# 00-minimal
- folder: ./00-minimal
file: recipe.yml
steps:
# the build is fully handled by the reusable github action
- name: Build Custom Image
uses: blue-build/[email protected]
working-directory: ${{ matrix.recipe.folder }}

Check failure on line 30 in .github/workflows/build-simple.yml

View workflow run for this annotation

GitHub Actions / bluebuild

Invalid workflow file

The workflow is not valid. .github/workflows/build-simple.yml (Line: 30, Col: 9): Unexpected value 'working-directory'
with:
recipe: ${{ matrix.recipe.file }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}