Skip to content

🔧 Updated deployment scripts #10

🔧 Updated deployment scripts

🔧 Updated deployment scripts #10

Workflow file for this run

name: Deployment
on:
push:
branches:
- 'feature/**'
- 'bugfix/**'
- 'main'
workflow_dispatch:
permissions:
contents: read
id-token: write
issues: write
jobs:
build:
strategy:
fail-fast: false
matrix:
account: [kf-strides]
region: [us-east-1]
uses: ./.github/workflows/build.yml
with:
REGION: ${{ matrix.region }}
ACCOUNT: ${{ matrix.account }}
RUNNER: ${{ matrix.runner == '' && matrix.account || matrix.runner }}
secrets: inherit
deploy:
needs: build
strategy:
fail-fast: false
matrix:
environment: [qa]
account: [kf-strides]
region: [us-east-1]
uses: ./.github/workflows/cicd_base.yml
with:
ENVIRONMENT: ${{ matrix.environment }}
REGION: ${{ matrix.region }}
ACCOUNT: ${{ matrix.account }}
RUNNER: ${{ matrix.runner == '' && matrix.account || matrix.runner }}
secrets: inherit