Skip to content

Workflow file for this run

on:
workflow_call:
inputs:
image_name:
required: true
type: string
tags:
required: true
type: string
busybox_version:
required: false
type: string
debian_version:
required: false
type: string
image_prefix:
required: false
type: string
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Check failure on line 24 in .github/workflows/generic_build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/generic_build.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Build
id: build
run: |
set -xeu
image_name='${{ inputs.image_name }}${{ inputs.image_prefix }}'
image_dir='images/${{ inputs.image_name }}'