We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62e7bab + eff4bff commit 0db0b82Copy full SHA for 0db0b82
.github/workflows/build.yml
@@ -33,6 +33,10 @@ jobs:
33
service_account: "gh-actions-dapla-pseudo@artifact-registry-5n.iam.gserviceaccount.com"
34
token_format: access_token
35
36
- - name: Build with Maven and deploy to Artifact Registry
37
- run: mvn --batch-mode -P ssb-bip deploy
+ - name: Build and test with Maven
+ if: github.event_name == 'pull_request'
38
+ run: mvn --batch-mode -P ssb-bip clean test
39
40
+ - name: Build with Maven and deploy to Artifact Registry
41
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
42
+ run: mvn --batch-mode -P ssb-bip deploy -Dmaven.javadoc.skip=true
0 commit comments