We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8552a4c commit ee07fd3Copy full SHA for ee07fd3
.github/workflows/deploy.yml
@@ -58,6 +58,14 @@ jobs:
58
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
59
run: npx semantic-release --dry-run --branches 9520_gha # Uncomment for testing purposes
60
61
+ - name: Publish to Maven Central
62
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
63
+ env:
64
+ TRAVIS_TAG: ${{ github.event.release.tag_name }} # for setMavenVersion
65
+ run: |
66
+ build/setupSigning.sh
67
+ build/setMavenVersion.sh
68
+
69
- name: Publish Java docs
70
if: ${{ github.event.workflow_run.conclusion == 'success' }}
71
env:
0 commit comments