Skip to content

Commit

Permalink
remove quite flags
Browse files Browse the repository at this point in the history
add package step
  • Loading branch information
wildone committed Oct 20, 2019
1 parent c99d4c1 commit dcab964
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: docker - mvn clean and cache .m2 in ./build/.m2/repository in repo dir
run: docker run --user $(id -u):$(id -g) -v $GITHUB_WORKSPACE:/build $BUILD_IMAGE mvn clean -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -B -P all-modules -q -Dmaven.repo.local=./build/.m2/repository
- name: docker - mvn clean (cache .m2 in ./build/.m2/repository in repo dir)
run: docker run --user $(id -u):$(id -g) -v $GITHUB_WORKSPACE:/build $BUILD_IMAGE mvn clean -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -B -P all-modules -Dmaven.repo.local=./build/.m2/repository
- name: docker - mvn package
run: docker run --user $(id -u):$(id -g) -v $GITHUB_WORKSPACE:/build $BUILD_IMAGE mvn package -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -B -P all-modules -Dmaven.repo.local=./build/.m2/repository

0 comments on commit dcab964

Please sign in to comment.