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 2020/01/09 13:10:43 UTC

[isis] branch master updated: ISIS-2158: supposed fix for site build

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 233d555  ISIS-2158: supposed fix for site build
233d555 is described below

commit 233d555fd100e089ba112d6bb17bf88cb4920c60
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Jan 9 14:10:34 2020 +0100

    ISIS-2158: supposed fix for site build
---
 .github/workflows/ci-build-site-no-push.yml | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/ci-build-site-no-push.yml b/.github/workflows/ci-build-site-no-push.yml
index e0ee602..e10cf78 100644
--- a/.github/workflows/ci-build-site-no-push.yml
+++ b/.github/workflows/ci-build-site-no-push.yml
@@ -17,6 +17,7 @@ jobs:
       BASELINE: 2.0.0-M2
       PROJECT_ROOT_PATH: ${{ github.workspace }}
       CI_SCRIPTS_PATH: ${{ github.workspace }}/scripts/ci
+      ANTORA_PLAYBOOKS_PATH: ${{ github.workspace }}/antora/playbooks
       
       # used for printing
       TIMESTAMP: ${{ github.event.head_commit.timestamp }}
@@ -40,11 +41,12 @@ jobs:
       run: |
         echo REVISION=$BASELINE.$(date +%Y%m%d)-$(date +%H%M)-$(echo $GITHUB_SHA | cut -c1-8) > $SHARED_VARS_FILE
         echo ==============  ENV  =================
-        echo BASELINE         \: $BASELINE
-        echo TIMESTAMP        \: $TIMESTAMP
-        echo PROJECT_ROOT_PATH\: $PROJECT_ROOT_PATH
-        echo CI_SCRIPTS_PATH  \: $CI_SCRIPTS_PATH
-        echo REVISION         \: $REVISION
+        echo BASELINE               \: $BASELINE
+        echo TIMESTAMP              \: $TIMESTAMP
+        echo PROJECT_ROOT_PATH      \: $PROJECT_ROOT_PATH
+        echo CI_SCRIPTS_PATH        \: $CI_SCRIPTS_PATH
+        echo ANTORA_PLAYBOOKS_PATH  \: $ANTORA_PLAYBOOKS_PATH
+        echo REVISION               \: $REVISION
         cat $SHARED_VARS_FILE
         echo ======================================
     
@@ -80,6 +82,6 @@ jobs:
     - name: Build Apache Isis Site
       shell: bash
       working-directory: ${{ env.PROJECT_ROOT_PATH }}
-      run: bash -x $CI_SCRIPTS_PATH/build-site.sh site.yml
+      run: bash -x $CI_SCRIPTS_PATH/build-site.sh $ANTORA_PLAYBOOKS_PATH/site.yml
       env:
         REVISION: ${{ steps.revision.outputs.revision }}