Skip to content

Workflow file for this run

# Trigger a build of all docker images including ARM images
on:
push:
workflow_dispatch:
inputs:
build_arm:
type: boolean
description: "Build for ARM as well"
default: true
required: false
env:
BUILD_ARM: "true"
jobs:
trigger-backend:

Check failure on line 17 in .github/workflows/build-arm.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-arm.yaml

Invalid workflow file

The workflow is not valid. .github/workflows/build-arm.yaml (Line: 17, Col: 3): Error calling workflow 'loculus-project/loculus/.github/workflows/backend.yml@eb790801ddddc36632bd3c93d6edfa844abc1296'. The nested job 'dockerImage' is requesting 'checks: read, packages: write', but is only allowed 'checks: none, packages: read'.
uses: ./.github/workflows/backend.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-config-preprocessor:
uses: ./.github/workflows/config-preprocessor-build.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-dummy-preprocessing:
uses: ./.github/workflows/dummyPreprocessing.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-ingest:
uses: ./.github/workflows/ingest.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-keycloakify:
uses: ./.github/workflows/keycloakify-build.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-preprocessing-nextclade:
uses: ./.github/workflows/preprocessing-nextclade.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-website:
uses: ./.github/workflows/website.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}