Skip to content

give broad permissions #3

give broad permissions

give broad permissions #3

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"
permissions:
contents: read
packages: write
checks: read
jobs:
trigger-backend:
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 }}