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:
47
47
echo "TARGET_COMMITISH=$(git rev-parse HEAD)" >> $GITHUB_ENV
48
48
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/google/google-java-format.git
49
49
50
- - name : Build Jars
50
+ - name : Deploy to Sonatype staging
51
51
env :
52
52
CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
53
53
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 }}"
55
60
56
61
- name : Push tag
57
62
run : |
You can’t perform that action at this time.
0 commit comments