We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 217dba9 commit 4719cc6Copy full SHA for 4719cc6
.github/workflows/maven-deploy.yml
@@ -32,7 +32,7 @@ jobs:
32
run: mvn clean install
33
34
- name: Deploy with Maven
35
- run: mvn deploy
+ run: mvn deploy --settings .mvn/settings.xml
36
env:
37
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
38
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
.mvn/settings.xml
@@ -0,0 +1,9 @@
1
+<settings>
2
+ <servers>
3
+ <server>
4
+ <id>jooq-pro</id>
5
+ <username>${env.JOOQ_REPO_USERNAME}</username>
6
+ <password>${env.JOOQ_REPO_PASSWORD}</password>
7
+ </server>
8
+ </servers>
9
+</settings>
0 commit comments