Browse Source

Prevent deploy jobs

pull/1662/head
Colin Dembovsky 3 years ago
parent
commit
374cf8d710
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      .github/workflows/basket-api-deploy.yml

+ 2
- 1
.github/workflows/basket-api-deploy.yml View File

@ -17,7 +17,8 @@ env:
jobs:
deploy-to-k8s:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' || github.event.workflow_run.conclusion == 'success' }}
#if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' || github.event.workflow_run.conclusion == 'success' }}
if: false
runs-on: ubuntu-latest
steps:


Loading…
Cancel
Save