Publish Infra #25
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: Publish Infra | |
on: | |
# PR targeting master is created or new commits are pushed | |
push: | |
branches: | |
- master | |
paths: | |
- "infrastructure/**" | |
# Manual trigger via GH Actions UI | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: "Select target environment" | |
required: true | |
default: "dev" | |
type: choice | |
options: | |
- dev | |
- test | |
- prod | |
jobs: | |
deploy: | |
uses: ./.github/workflows/aws-template-terraform.yml | |
with: | |
CONTEXT_FOLDER: "./infrastructure/cloud/environments/${{ inputs.environment || 'dev' }}" | |
CHANGE_FOLDER_NAME: environments/${{ inputs.environment || 'dev' }} | |
ENVIRONMENT_NAME: ${{ inputs.environment || 'dev' }} | |
TEST_BUCKET_NAME: jasper-test-bucket | |
APPLY_TF_CODE: true | |
secrets: inherit |