Skip to content

fix (#185)

fix (#185) #101

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
paths:
- infra/**
workflow_dispatch:
permissions: read-all
jobs:
deploy_jon:
name: Deploy to jon
uses: ./.github/workflows/deploy_dns_environment.yaml
with:
environment: dev_jon
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
deploy_sn10_prod:
name: Deploy to sn10 prod
uses: ./.github/workflows/deploy_dns_environment.yaml
needs: deploy_jon
with:
environment: prod_sn10
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
deploy_sn3_prod:
name: Deploy to sn3 prod
uses: ./.github/workflows/deploy_dns_environment.yaml
needs: deploy_sn10_prod
with:
environment: prod_sn3
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'