Skip to content

trigger on push temporarily for testing #1

trigger on push temporarily for testing

trigger on push temporarily for testing #1

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: ${{ github.event.inputs.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@be36616d46368a0d0f1442a43c1a6eb2e245017c'. The nested job 'dockerImage' is requesting 'checks: read, packages: write', but is only allowed 'checks: none, packages: read'.

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@be36616d46368a0d0f1442a43c1a6eb2e245017c'. 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 }}