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 90f1935 commit 8b990ccCopy full SHA for 8b990cc
.github/workflows/maven-publish.yml
@@ -29,8 +29,11 @@ jobs:
29
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
30
settings-path: ${{ github.workspace }} # location for the settings.xml file
31
32
+ - name: Make Maven executable
33
+ run: chmod +x ./mvnw
34
+
35
- name: Build with Maven
- run: mvn -B package --file pom.xml
36
+ run: ./mvnw -B package --file pom.xml
37
38
- name: Publish to GitHub Packages Apache Maven
39
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
0 commit comments