This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new c3be7d870 fix: do not run smoke tests on 1.9 nightly
c3be7d870 is described below

commit c3be7d87031382209bd8beb95b7cf0ee8ab9a241
Author: Pasquale Congiusti <pasquale.congiu...@gmail.com>
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 }}

Reply via email to