Skip to content

Root pipeline

Root pipeline #35

Workflow file for this run

name: Root pipeline
on:
workflow_run:
workflows: ["CI"]
types:
- completed
jobs:
build:
uses: ./.github/workflows/build.yml
with:
ECR_REPO_NAME: pingpong_api
secrets: inherit
deploy:
needs: [build]
uses: ./.github/workflows/deploy.yml
with:
ECR_REPO_NAME: pingpong_api
secrets: inherit