Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
ci: Only upload dev helm chart for non-fork PRs (#6763)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowies committed Feb 17, 2022
1 parent 45afb93 commit 134d487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ jobs:
helm_charts_upload:
name: Publish helm charts to dev repo
needs: [prepare_ci_run, helm_charts_build]
if: (needs.prepare_ci_run.outputs.BUILD_EVERYTHING == 'true') || (needs.prepare_ci_run.outputs.BUILD_INSTALLER == 'true')
if: ((needs.prepare_ci_run.outputs.BUILD_EVERYTHING == 'true') || (needs.prepare_ci_run.outputs.BUILD_INSTALLER == 'true')) && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))
runs-on: ubuntu-20.04
steps:
- name: Checkout helm-charts repo
Expand Down

0 comments on commit 134d487

Please sign in to comment.