Skip to content

Fix integration-workflow file type #2

Fix integration-workflow file type

Fix integration-workflow file type #2

Workflow file for this run

name: Subd Container Deployment Pipeline
on:
push:
branches: ["main"]
tags: ['v*.*.*']
pull_request:
branches: ["main"]
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
integration:
uses: ./.github/workflows/integration-workflow.yaml

Check failure on line 17 in .github/workflows/pipeline.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pipeline.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/pipeline.yaml" -> "./.github/workflows/integration-workflow.yaml" (source branch with sha:f7adebd29835b8fb526f8ed53231e7dbe4722f10) : `permissions` is not a valid event name
permissions:
contents: read
delivery:
needs: [integration]
uses: ./.github/workflows/delivery-workflow.yaml
permissions:
contents: read
packages: write
id-token: write
deploy-staging:
needs: [delivery]
uses: ./.github/workflows/deploy-aws-app-runner.yaml
with:
environment: Staging
permissions:
packages: read
secrets: inherit
deploy-production:
needs: [delivery]
uses: ./.github/workflows/deploy-aws-app-runner.yaml
with:
environment: Production
permissions:
packages: read
secrets: inherit