We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9633049 commit 21bb05bCopy full SHA for 21bb05b
1 file changed
.github/workflows/maven-publish.yml
@@ -23,14 +23,14 @@ jobs:
23
java-version: '8.0.402+6'
24
distribution: 'temurin'
25
server-id: jitpack.io # Value of the distributionManagement/repository/id field of the pom.xml
26
- settings-path: ${{ github.workspace }} # location for the settings.xml file
+ settings-path: ${{ github.workspace }}/java # location for the settings.xml file
27
28
- name: Build with Maven
29
working-directory: ./java
30
run: mvn -B package --file pom.xml
31
32
- name: Publish to GitHub Packages Apache Maven
33
34
- run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
+ run: mvn deploy -s $GITHUB_WORKSPACE/java/settings.xml
35
env:
36
GITHUB_TOKEN: ${{ github.token }}
0 commit comments