Skip to content

Commit 2e598b1

Browse files
committed
Remove test branch from deployment workflow
1 parent 267cda5 commit 2e598b1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.github/workflows/deploy_gcp.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
branches:
88
- dev
99
- main
10-
- SPEC-889-Add-github-workflow-to-publish-docker-img
1110
workflow_dispatch:
1211
inputs:
1312
environment:
@@ -23,14 +22,12 @@ jobs:
2322
if: |
2423
(github.event_name == 'pull_request' && startsWith(github.head_ref, 'hosted/')) ||
2524
(github.event_name == 'push' && github.ref == 'refs/heads/dev') ||
26-
(github.event_name == 'push' && github.ref == 'refs/heads/SPEC-889-Add-github-workflow-to-publish-docker-img') ||
2725
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
2826
(github.event_name == 'workflow_dispatch' && inputs.environment == 'prod')
2927
uses: ./.github/workflows/build_and_deploy_gcp.yml
3028
with:
3129
environment: ${{ inputs.environment ||
3230
(github.ref == 'refs/heads/dev' && 'dev') ||
33-
(github.ref == 'refs/heads/SPEC-889-Add-github-workflow-to-publish-docker-img' && 'dev') ||
3431
(github.ref == 'refs/heads/main' && 'staging') ||
3532
(github.event_name == 'pull_request' && 'dev') ||
3633
'dev' }}

0 commit comments

Comments
 (0)