You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2020/10/21 10:08:22 UTC

[camel-quarkus-examples] branch master updated: Prevent mvnw-for-each script acting on camel-quarkus main project

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

jamesnetherton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 510351c  Prevent mvnw-for-each script acting on camel-quarkus main project
510351c is described below

commit 510351cea7da05518c9d86a7d1968ba35be75a5a
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Oct 21 10:28:42 2020 +0100

    Prevent mvnw-for-each script acting on camel-quarkus main project
---
 .github/workflows/ci-build.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 6a1a859..79b66ad 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -61,8 +61,8 @@ jobs:
       - name: Build Camel Quarkus
         if: github.ref == 'refs/heads/camel-quarkus-master' || github.base_ref == 'camel-quarkus-master'
         run: |
-          git clone --depth 1 --branch master https://github.com/apache/camel-quarkus.git \
-            && cd camel-quarkus \
+          git clone --depth 1 --branch master https://github.com/apache/camel-quarkus.git ${{ runner.temp }}/camel-quarkus \
+            && cd ${{ runner.temp }}/camel-quarkus \
             && echo "Current Camel Quarkus commit:" $(git rev-parse HEAD) \
             && ./mvnw ${MAVEN_ARGS} clean install -DskipTests -Denforcer.skip -Dquarkus.build.skip
       - name: mvn license:check formatter:validate impsort:check cq:sync-example-properties