This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit ebf00c6c6de543343600d2859c1a750cc1b38820 Author: Nicola Ferraro <[email protected]> AuthorDate: Thu Feb 27 13:11:01 2020 +0100 Fix #1305: fix workflow definition --- .github/workflows/knative.yml | 5 +++-- .github/workflows/kubernetes.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/knative.yml b/.github/workflows/knative.yml index 06aeb30..adfb133 100644 --- a/.github/workflows/knative.yml +++ b/.github/workflows/knative.yml @@ -30,8 +30,9 @@ jobs: runs-on: ubuntu-latest - matrix: - publisher: ["Buildah", "Spectrum"] + strategy: + matrix: + publisher: ["Buildah", "Spectrum"] steps: - name: Checkout code diff --git a/.github/workflows/kubernetes.yml b/.github/workflows/kubernetes.yml index 82558be..eb6d51e 100644 --- a/.github/workflows/kubernetes.yml +++ b/.github/workflows/kubernetes.yml @@ -30,8 +30,9 @@ jobs: runs-on: ubuntu-latest - matrix: - publisher: ["Buildah", "Spectrum"] + strategy: + matrix: + publisher: ["Buildah", "Spectrum"] steps: - name: Checkout code
