Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
service_account: "gh-actions-dapla-pseudo@artifact-registry-5n.iam.gserviceaccount.com"
token_format: access_token

- name: Build with Maven and deploy to Artifact Registry
run: mvn --batch-mode -P ssb-bip deploy
- name: Build and test with Maven
if: github.event_name == 'pull_request'
run: mvn --batch-mode -P ssb-bip clean test

- name: Build with Maven and deploy to Artifact Registry
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: mvn --batch-mode -P ssb-bip deploy -Dmaven.javadoc.skip=true
Loading