Skip to content

Commit

Permalink
Merge pull request #6 from MITLibraries/rdi-217-deploy-workflows
Browse files Browse the repository at this point in the history
Add stage and prod deploy workflows
  • Loading branch information
hakbailey committed Jul 29, 2022
2 parents 56530e2 + 83c528e commit 1e2411d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/prod-promote.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### This is the Terraform-generated prod-promote.yml workflow for the timdex-index-manager-prod app repository ###
name: Prod Promote Fargate Container
on:
workflow_dispatch:
release:
types: [published]

jobs:
deploy:
name: Prod Promote Fargate Container
uses: mitlibraries/.github/.github/workflows/fargate-shared-promote-prod.yml@main
secrets: inherit
with:
AWS_REGION: "us-east-1"
GHA_ROLE_STAGE: timdex-index-manager-gha-stage
GHA_ROLE_PROD: timdex-index-manager-gha-prod
ECR_STAGE: "timdex-index-manager-stage"
ECR_PROD: "timdex-index-manager-prod"
19 changes: 19 additions & 0 deletions .github/workflows/stage-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### This is the Terraform-generated stage-build.yml workflow for the timdex-index-manager-stage app repository ###
name: Stage Build and Deploy Fargate Container
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'

jobs:
deploy:
name: Stage Deploy Fargate Container
uses: mitlibraries/.github/.github/workflows/fargate-shared-deploy-stage.yml@main
secrets: inherit
with:
AWS_REGION: "us-east-1"
GHA_ROLE: "timdex-index-manager-gha-stage"
ECR: "timdex-index-manager-stage"

0 comments on commit 1e2411d

Please sign in to comment.