This is an automated email from the ASF dual-hosted git repository.
valdar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/master by this push:
new 2b7ba8b Fixed build action schema generation error.
new 6897453 Merge pull request #6 from valdar/fixBuildActionProblems
2b7ba8b is described below
commit 2b7ba8b70afe82f2735db338ba4d9ce42dc9c756
Author: Andrea Tarocchi <[email protected]>
AuthorDate: Wed Feb 12 00:05:22 2020 +0100
Fixed build action schema generation error.
---
.github/workflows/automatic-sync-master.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/automatic-sync-master.yml
b/.github/workflows/automatic-sync-master.yml
index a458091..c1f124f 100644
--- a/.github/workflows/automatic-sync-master.yml
+++ b/.github/workflows/automatic-sync-master.yml
@@ -37,7 +37,8 @@ jobs:
with:
java-version: 1.8
- name: Build Project
- run: mvn -f /home/runner/work/camel-spring-boot/camel/pom.xml clean
install -DskipTests
+ run: ./mvnw -V --no-transfer-progress clean install -DskipTests
+ working-directory: /home/runner/work/camel-spring-boot/camel
- name: Checkout
uses: actions/checkout@v1
with:
@@ -47,7 +48,7 @@ jobs:
with:
java-version: 1.8
- name: Build Project
- run: ./mvnw clean install -DskipTests
+ run: ./mvnw -V --no-transfer-progress clean install -DskipTests
- name: GitHub Pull Request Action
uses: repo-sync/[email protected]
with: