Skip to content

Deploy to Dev and Staging #35

Deploy to Dev and Staging

Deploy to Dev and Staging #35

name: Deploy to Dev and Staging
on:
workflow_run:
workflows:
- "Test, Lint and Build"
types:
- completed
branches:
- main
jobs:
deploy:
name: Run deploy
strategy:
matrix:
environment: ['dev', 'staging']
uses: ./.github/workflows/deploy_build.yml
with:
environment: ${{ matrix.environment }}
ref: main
secrets: inherit