-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hard coding branch for higher non-prod environments (#1340)
* Hard coding branch for higher non-prod environments * Adding Preprod and Prod * Missing AWS Admin role
- Loading branch information
1 parent
03dcd46
commit 83faa81
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build and Deploy VTM App to PreProd | ||
run-name: "${{ github.actor }} - ${{ github.ref_name }} - ${{ github.run_id }} 🚀" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
vtm-app: | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
branch: ${{ github.ref_name }} | ||
environment: 'preprod' | ||
bucket: '.preprod' | ||
secrets: | ||
AWS_MGMT_ROLE: ${{ secrets.AWS_MGMT_ROLE }} | ||
AWS_ADMIN_ROLE: ${{ secrets.AWS_PROD_ROLE }} | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build and Deploy VTM App to Prod | ||
run-name: "${{ github.actor }} - ${{ github.ref_name }} - ${{ github.run_id }} 🚀" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
vtm-app: | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
branch: 'master' | ||
environment: 'prod' | ||
bucket: '.prod' | ||
secrets: | ||
AWS_MGMT_ROLE: ${{ secrets.AWS_MGMT_ROLE }} | ||
AWS_ADMIN_ROLE: ${{ secrets.AWS_PROD_ROLE }} | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} |
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