Skip to content

updates

updates #17

Workflow file for this run

name: Deploy All Environments
permissions: read-all
on:
push:
branches:
- master
- james/iac
workflow_dispatch:
branches:
- master
jobs:
deploy_dev3:
name: Deploy dev3
uses: ./.github/workflows/deploy_environment.yaml
with:
environment: dev3
secrets: inherit
#if: github.ref == 'refs/heads/master'
deploy_prod1:
name: Deploy prod1
uses: ./.github/workflows/deploy_environment.yaml
with:
environment: prod1
secrets: inherit
needs: deploy_dev3
if: github.ref == 'refs/heads/master'