Prepare breaking changes in 2.0.0 #322
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven Deploy | |
on: | |
push: | |
branches: | |
- 'main' # Build the latest develop-SNAPSHOT | |
paths: | |
- '**/src/**' | |
- '**/pom.xml' | |
- 'pom.xml' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
publish: | |
uses: ardoco/actions/.github/workflows/maven.yml@main | |
with: | |
deploy: true | |
with-submodules: true | |
runs-on: ubuntu-latest | |
secrets: | |
OSSRH_USER: ${{secrets.OSSRH_USER}} | |
OSSRH_TOKEN: ${{secrets.OSSRH_TOKEN}} | |
GPG_KEY: ${{secrets.GPG_KEY}} | |