Skip to content

reuse deployment

reuse deployment #80

Workflow file for this run

name: Staging Deployment Backend
on:
push:
branches:
- master
jobs:
integrate:
uses: ./.github/workflows/integrate.yml
build-image:
needs: integrate
uses: ./.github/workflows/build-and-push-docker.yml
secrets: inherit
push-staging:
needs: [integrate, build-image]
uses: ./.github/workflows/deploy-image.yml
with:
deployment: kubernetes/blueDeployment.yml
service: kubernetes/blueService.yml
ingress: kubernetes/ingress.yml
secrets: inherit