From 40c8072ac8f8ac51eb22c69efbe8014fae742e96 Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Wed, 16 Jun 2021 12:59:48 -0400 Subject: [PATCH] IC:2021-06-15, HOTFIX, usersguide warnings log Update check in documentation build workflow to reflect new warnings logfile name for usersguide changed in nasa/cfe#1612 --- .github/workflows/build-documentation.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 3035903c2..696e05b6a 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -102,7 +102,6 @@ jobs: - name: Build Usersguide run: | make usersguide > make_usersguide_stdout.txt 2> make_usersguide_stderr.txt - mv build/docs/warnings.log usersguide_warnings.log - name: Archive Users Guide Build Logs uses: actions/upload-artifact@v2 @@ -111,7 +110,7 @@ jobs: path: | make_usersguide_stdout.txt make_usersguide_stderr.txt - usersguide_warnings.log + cfe-usersguide-warnings.log - name: Error Check @@ -123,8 +122,8 @@ jobs: - name: Warning Check run: | - if [[ -s usersguide_warnings.log ]]; then - cat usersguide_warnings.log + if [[ -s cfe-usersguide-warnings.log ]]; then + cat cfe-usersguide-warnings.log exit -1 fi