Browse Source

Temp use staging pipeline to run a deployment

AwsProdDeploy
Rachael Booth 1 year ago
parent
commit
da5639e1ad
  1. 11
      .github/workflows/staging_pipeline.yml

11
.github/workflows/staging_pipeline.yml

@ -4,6 +4,7 @@ on:
push:
branches:
- main
- AwsProdDeploy
pull_request:
types:
- opened
@ -233,12 +234,12 @@ jobs:
aws_deploy:
name: AWS Deploy
if: github.ref == 'refs/heads/main'
needs: [lint, test, feature_test, audit]
if: github.ref == 'refs/heads/AwsProdDeploy'
#needs: [lint, test, feature_test, audit]
uses: ./.github/workflows/aws_deploy.yml
with:
aws_account_id: 107155005276
aws_resource_prefix: core-staging
environment: staging
aws_account_id: 977287343304
aws_resource_prefix: core-prod
environment: production
permissions:
id-token: write

Loading…
Cancel
Save