Skip to content

Commit

Permalink
fix: Skip tests (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: Romuald Rousseau <[email protected]>
  • Loading branch information
RomualdRousseau and Romuald Rousseau authored Oct 4, 2024
1 parent 1c8d023 commit 28b4a8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Installing local dependencies
run: mvn -U -B clean initialize

- name: Deploy project
- name: Install project
run: mvn -U -B -DskipTests install

- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Deploy project
run: |
export GPG_TTY=$(tty)
mvn -U -B deploy -P release -s .mvn/settings.xml
mvn -U -B -DskipTests deploy -P release -s .mvn/settings.xml
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-deploy-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: mvn -U -B clean initialize

- name: Deploy project snapshot
run: mvn -U -B deploy -P snapshot -s .mvn/settings.xml
run: mvn -U -B -DskipTests deploy -P snapshot -s .mvn/settings.xml
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}

0 comments on commit 28b4a8a

Please sign in to comment.