-
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.
Update triggers actions for each environment
- Loading branch information
1 parent
47e7547
commit 39d9c92
Showing
3 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
8 changes: 3 additions & 5 deletions
8
.github/workflows/deploy-feature.yml → .github/workflows/deploy-VTMDev-2.yml
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 |
---|---|---|
@@ -1,18 +1,16 @@ | ||
name: Build and Deploy VTM to Feature | ||
name: Build and Deploy VTM to VTMDev1 | ||
run-name: "${{ github.actor }} - ${{ github.ref_name }} - ${{ github.run_id }} 🚀" | ||
|
||
on: | ||
workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - 'feature/*' | ||
|
||
jobs: | ||
feature-build: | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
branch: ${{ github.ref_name }} | ||
environment: 'feature' | ||
environment: 'vtmdev-2' | ||
bucket: '-vtmdev-2.develop' | ||
secrets: | ||
AWS_MGMT_ROLE: ${{ secrets.AWS_MGMT_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
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,16 @@ | ||
name: Build and Deploy VTM to Develop | ||
run-name: "${{ github.actor }} - ${{ github.ref_name }} - ${{ github.run_id }} 🚀" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
develop-build: | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
branch: ${{ github.ref_name }} | ||
environment: 'integration' | ||
bucket: '.integration' | ||
secrets: | ||
AWS_MGMT_ROLE: ${{ secrets.AWS_MGMT_ROLE }} | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} |