Skip to content

Commit

Permalink
Implemented: Autodeploy flow for uat(#31ngcmh)
Browse files Browse the repository at this point in the history
  • Loading branch information
shashwatbangar committed Nov 30, 2022
1 parent c911dda commit e12f041
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .firebaserc
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"targets": {
"digital-commerce-71eb8": {
"hosting": {
"hotwax-job-manager": [
"prod": [
"hotwax-job-manager"
]
}
},
"hotwax-digital-commerce": {
"hosting": {
"job-manager-dev": [
"dev": [
"job-manager-dev"
],
"job-manager-uat": [
"uat": [
"job-manager-uat"
]
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
env:
HOTWAX_PUBLIC_SECRET: ${{ secrets.HOTWAX_PUBLIC_SECRET }}
- name: Deploy
run: firebase deploy --token "$HOTWAX_PUBLIC_SECRET" -m "Deploying via GitHub actions" --only hosting:job-manager-dev
run: firebase deploy --token "$HOTWAX_PUBLIC_SECRET" -m "Deploying via GitHub actions" --only hosting:dev
env:
HOTWAX_PUBLIC_SECRET: ${{ secrets.HOTWAX_PUBLIC_SECRET }}
6 changes: 3 additions & 3 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"hosting": [
{
"target": "hotwax-job-manager",
"target": "prod",
"public": "dist",
"ignore": [
"firebase.json",
Expand All @@ -15,7 +15,7 @@

},
{
"target": "job-manager-dev",
"target": "dev",
"public": "dist",
"ignore": [
"firebase.json",
Expand All @@ -28,7 +28,7 @@
}]
},
{
"target": "job-manager-uat",
"target": "uat",
"public": "dist",
"ignore": [
"firebase.json",
Expand Down

0 comments on commit e12f041

Please sign in to comment.