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 06:39:44 UTC

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

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 38cee43abd ISIS-2445: try build local staging repo (8)
38cee43abd is described below

commit 38cee43abd6681d91fda36828046c6ecf1cf1421
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Apr 10 08:39:38 2022 +0200

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

diff --git a/.github/workflows/ci-build-artifacts-push-maven.yml b/.github/workflows/ci-build-artifacts-push-maven.yml
index 2df248b64e..cf4589133f 100644
--- a/.github/workflows/ci-build-artifacts-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-push-maven.yml
@@ -76,22 +76,20 @@ jobs:
 #        release_name: Release ${{ env.REVISION }}
 
     - name: Build Artifacts and Deploy to Local Filesystem
+      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
-      run: >-
-         mvn deploy
-         -f isis-parent/pom.xml
-         -Dreleased
-         -Dnightly-stage1
-         -Denforcer.failFast=true
-         -Djacoco.skip=true
-         -Dmaven.source.skip=true
-         -Dskip.git
-         -Dskip.arch
-         -DskipTests
-         -T1C
+        MVN_ADDITIONAL_OPTS: >-
+          -f isis-parent/pom.xml
+          -Dreleased
+          -Dnightly-stage1
+          -Denforcer.failFast=true
+          -Djacoco.skip=true
+          -Dmaven.source.skip=true
+        MVN_STAGES: deploy
 
     - name: Deploy from Local Filesystem to Github
         # -Dreleased ... build only the released modules
@@ -110,6 +108,8 @@ jobs:
          -Dskip.arch
          -DskipTests
          -T1C
+#not yet      env:
+#        GITHUB_TOKEN: ${{ github.token }}
 
 #   - name: Build Artifacts (Github March 2022)
 #     run: 'bash scripts/ci/build-artifacts.sh'