Skip to content

Commit 2f8a7a4

Browse files
disable push and manifest jobs with false condition
1 parent 0e8c077 commit 2f8a7a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/newbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ jobs:
383383

384384
push:
385385
needs: test
386-
if: always() && !failure() && !cancelled() && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))
386+
if: false # always() && !failure() && !cancelled() && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))
387387
strategy:
388388
matrix:
389389
tag: ${{ fromJSON(needs.setup.outputs.images).*.tag }}
@@ -413,7 +413,7 @@ jobs:
413413

414414
manifest:
415415
needs: push
416-
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
416+
if: false # github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
417417
strategy:
418418
matrix:
419419
tag: ${{ fromJSON(needs.setup.outputs.images).*.tag }}

0 commit comments

Comments
 (0)