This is an automated email from the ASF dual-hosted git repository.
shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new 5c68fd4e0 Add deployment to snapshot repository and docker hub
5c68fd4e0 is described below
commit 5c68fd4e0ab51a10a358ed8905a11215ac42b48b
Author: Serge Huber <[email protected]>
AuthorDate: Fri Apr 8 14:07:06 2022 +0200
Add deployment to snapshot repository and docker hub
---
.github/workflows/unomi-ci-build-tests.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/unomi-ci-build-tests.yml
b/.github/workflows/unomi-ci-build-tests.yml
index b7bd609bb..433fd414d 100644
--- a/.github/workflows/unomi-ci-build-tests.yml
+++ b/.github/workflows/unomi-ci-build-tests.yml
@@ -27,3 +27,7 @@ jobs:
- name: Integration tests
run: mvn -pl itests clean install -Pintegration-tests
+ - name: Deploy snapshots to Apache Snapshots repository
+ run: mvn clean install deploy -P integration-tests,docker
+ - name: Deploy Docker snapshot image
+ run: mvn clean install -P docker; pushd docker; mvn docker:push; popd