infrastructure-env #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: infrastructure | |
env: | |
NODE_VERSION: 20 | |
OIDC_ROLE_ARN: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/saas-github-oidc-provider-role | |
permissions: | |
id-token: write | |
contents: read | |
on: | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'Environment to deploy' | |
type: string | |
required: true | |
default: 'dev' | |
workflow_call: | |
inputs: | |
environment: | |
description: 'Environment to deploy' | |
type: string | |
required: true | |
default: 'dev' | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
files: ${{ steps.filter.outputs.changes }} | |
steps: | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
baseimage: | |
- 'infrastructure/src/images/Dockerfile.base' | |
infrastructure: | |
- '.github/workflows/infrastructure.yml' | |
- 'infrastructure/**' | |
tools: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install | |
run: npm ci | |
- name: Build | |
working-directory: ./infrastructure | |
run: | | |
npm run lint | |
npm run build | |
- name: Assume OIDC Role | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-session-name: gh-infrastructure-deploy-session | |
role-to-assume: ${{ env.OIDC_ROLE_ARN }} | |
aws-region: ${{ vars.AWS_REGION }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: Deploy base image | |
if: ${{ needs.changes.outputs.files.baseimage == 'true' }} | |
working-directory: ./infrastructure | |
run: | | |
aws ecr describe-repositories --repository-names $REPOSITORY || aws ecr create-repository --repository-name $REPOSITORY | |
docker build -t $REGISTRY/$REPOSITORY:latest -f ./src/images/Dockerfile.base . | |
docker push $REGISTRY/$REPOSITORY:latest | |
env: | |
REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
REPOSITORY: ${{ vars.BASE_IMAGE_NAME }} | |
- name: Cdk Synth | |
working-directory: ./infrastructure | |
run: npx cdk synth --require-approval never | |
- name: Cdk Deploy | |
working-directory: ./infrastructure | |
run: npx cdk deploy --require-approval never | |
dev: | |
if: ${{ needs.changes.outputs.files.infrastructure == 'true' }} | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install | |
run: npm ci | |
- name: Build | |
working-directory: ./infrastructure | |
run: | | |
npm run lint | |
npm run build | |
- name: Assume OIDC Role | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/oidc-provider-role | |
role-session-name: gh-dev-deploy-session | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Synth | |
run: npx cdk synth Dev* --require-approval never | |
- name: Deploy | |
run: npx cdk deploy Dev* --require-approval never |