Skip to content

Commit

Permalink
Fix: changes to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
homewardgamer committed Oct 25, 2024
1 parent d4d8dc0 commit bacc4c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
- name: Set version
run: mvn versions:set -DnewVersion=${{ github.event.release.tag_name }}
- name: Publish package
run: mvn -P release --batch-mode deploy -DskipTests
run: |
export GPG_TTY=$(tty)
mvn -P release --batch-mode deploy -DskipTests
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down

0 comments on commit bacc4c4

Please sign in to comment.