You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/04/10 07:23:02 UTC

[isis] branch master updated: ISIS-2445: try build local staging repo (12)

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new bce0621196 ISIS-2445: try build local staging repo (12)
bce0621196 is described below

commit bce0621196f498441e1b72435cf0e3f9d0e12406
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Apr 10 09:22:58 2022 +0200

    ISIS-2445: try build local staging repo (12)
---
 .github/workflows/ci-build-artifacts-push-maven.yml | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/ci-build-artifacts-push-maven.yml b/.github/workflows/ci-build-artifacts-push-maven.yml
index 8d3800874a..cb7917ed02 100644
--- a/.github/workflows/ci-build-artifacts-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-push-maven.yml
@@ -94,19 +94,22 @@ jobs:
          -T1C
 
     - name: Deploy from Local Filesystem to Github
-      run: 'bash scripts/ci/build-artifacts.sh'
-      env:
         # -Dreleased ... build only the released modules
         # -Denforcer.failFast=true ... fail fast on convergence issues (enforcer plugin)
         # -Djacoco.skip=true ... no need for the CI build to add test coverage reports
         # -T 1C ... 1 build thread per core
-        MVN_ADDITIONAL_OPTS: >-
-          -f isis-parent/pom.xml
-          -Dreleased
-          -Dnightly-stage2
-          -Denforcer.failFast=true
-          -Djacoco.skip=true
-        MVN_STAGES: deploy
+      run: >-
+        mvn deploy
+        -f isis-parent/pom.xml
+        -Dreleased
+        -Dnightly-stage2
+        -Denforcer.failFast=true
+        -Djacoco.skip=true
+        -Dmaven.source.skip=true
+        -Dskip.git
+        -Dskip.arch
+        -DskipTests
+      env:
         GITHUB_TOKEN: ${{ github.token }}
 
 #   - name: Build Artifacts (Github March 2022)