File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,16 @@ jobs:
4747 echo "TARGET_COMMITISH=$(git rev-parse HEAD)" >> $GITHUB_ENV
4848 git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/google/google-java-format.git
4949
50- - name : Build Jars
50+ - name : Deploy to Sonatype staging
5151 env :
5252 CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
5353 CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
54- run : mvn --no-transfer-progress -P sonatype-oss-release clean deploy -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}"
54+ run :
55+ mvn --no-transfer-progress -pl '!eclipse_plugin' -P sonatype-oss-release clean deploy -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}"
56+
57+ - name : Build Eclipse plugin
58+ run :
59+ mvn --no-transfer-progress -pl 'eclipse_plugin' verify gpg:sign -DskipTests=true -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}"
5560
5661 - name : Push tag
5762 run : |
You can’t perform that action at this time.
0 commit comments