There was an error while loading. Please reload this page.
1 parent 4b2e0c7 commit 919a9d7Copy full SHA for 919a9d7
1 file changed
.github/workflows/ci.yml
@@ -102,7 +102,7 @@ jobs:
102
labels: ${{ steps.meta.outputs.labels }}
103
push: true
104
105
- deploy:
+ deploy_plan:
106
needs: build
107
uses: ./.github/workflows/deploy.yml
108
with:
@@ -112,3 +112,14 @@ jobs:
112
if: github.event_name != 'pull_request'
113
secrets:
114
GCP_CREDENTIALS_DEPLOY: ${{ secrets.GCP_CREDENTIALS_DEPLOY }}
115
+
116
+ deploy_browse:
117
+ needs: build
118
+ uses: ./.github/workflows/deploy.yml
119
+ with:
120
+ environment: Dev - browse
121
+ tag: ${{ needs.build.outputs.version }}
122
+ # only run deploy for CI runs on main
123
+ if: github.event_name != 'pull_request'
124
+ secrets:
125
+ GCP_CREDENTIALS_DEPLOY: ${{ secrets.GCP_CREDENTIALS_DEPLOY }}
0 commit comments