This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git
commit edbb0c58e0f81ffc221d93a9bc35d91ad2a76437 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Sun Feb 14 12:19:11 2021 -0300 correction changes --- .github/workflows/html_publication.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/html_publication.yml b/.github/workflows/html_publication.yml index ef17f9d..acb24d7 100644 --- a/.github/workflows/html_publication.yml +++ b/.github/workflows/html_publication.yml @@ -17,11 +17,14 @@ jobs: run : | URL="${URL:='https://wayang.apache.org'}" # If variable not set or null, set it to default. BASE_URL="${BASE_URL:='/'}" # If variable not set or null, set it to default. + echo "${URL}" + echo "${BASE_URL}" + cat _config.yml echo "url: \"${URL}\"" > _config.yml.tmp echo "baseurl: \"${BASE_URL}\"" > _config.yml.tmp cat _config.yml | grep -v "url:" >> _config.yml.tmp mv _config.yml.tmp _config.yml - + cat _config.yml # Use GitHub Actions' cache to shorten build times and decrease load on servers - name: cache
