We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02716fd commit 7de2cb2Copy full SHA for 7de2cb2
.github/workflows/maven-deploy.yml
@@ -22,13 +22,15 @@ jobs:
22
with:
23
java-version: 1.8
24
- name: Build
25
- run: mvn -B package --file pom.xml
+ run: mvn -B package -Dmaven.test.skip=true
26
+ - name: Test
27
+ run: mvn -B test
28
env:
29
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
30
MYSQL_USERNAME: test
31
MYSQL_PASSWORD: test
32
- name: Deploy to JavaWebStack Repository
- run: mvn deploy -s build/settings.xml
33
+ run: mvn deploy -B -s build/settings.xml -Dmaven.test.skip=true
34
35
DEPLOYMENT_USERNAME: ${{ secrets.DEPLOYMENT_USERNAME }}
36
DEPLOYMENT_PASSWORD: ${{ secrets.DEPLOYMENT_PASSWORD }}
0 commit comments