Skip to content

Commit

Permalink
mvn batch mode for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
querwurzel committed May 3, 2024
1 parent bd51bf3 commit b3271e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
java-version: '21'

- name: Build with Maven
run: ./mvnw clean verify
run: ./mvnw --batch-mode clean verify

- name: Publish Test Report
if: success() || failure()
Expand All @@ -45,8 +45,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./mvnw versions:set -DnewVersion=1.0.${{ github.run_number }}
./mvnw deploy -DskipTests -Denv=mysql
./mvnw --batch-mode versions:set -DnewVersion=1.0.${{ github.run_number }}
./mvnw --batch-mode deploy -DskipTests -Denv=mysql
- uses: actions/delete-package-versions@v5
with:
Expand Down

0 comments on commit b3271e7

Please sign in to comment.