This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch squakez-patch-1 in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit aeab7261b3210969f5fb8ccb06a336b782ded7b5 Author: Pasquale Congiusti <[email protected]> AuthorDate: Wed Sep 7 11:16:17 2022 +0200 fix: do not run smoke tests on 1.9 nightly Workaround to skip the execution of an action which is missing on release-1.9 branch --- .github/workflows/release-workflow.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-workflow.yml b/.github/workflows/release-workflow.yml index 7e96beb94..a0275e61c 100644 --- a/.github/workflows/release-workflow.yml +++ b/.github/workflows/release-workflow.yml @@ -52,9 +52,11 @@ jobs: ref: ${{ inputs.ref }} persist-credentials: false submodules: recursive - + + # TODO: remove this workaround once 1.11 is released, see #3613 + - if: ${{ github.ref == 'refs/heads/main' }} || ${{ github.ref == 'refs/heads/release-1.10.x' }} # Reuse the testing flows used for PRs - - name: Smoke tests + name: Smoke tests uses: ./.github/actions/e2e-common with: cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }}
