From 2601fd90fedbe783ff3bab91aaf46c24c0c4db55 Mon Sep 17 00:00:00 2001 From: arielswalker <166176736+arielswalker@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:48:06 -0500 Subject: [PATCH] Fix invalid value workflow reference --- .github/workflows/build-documentation.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index fa3575d37..d8bd33bb0 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -53,8 +53,11 @@ jobs: build-cfe-usersguide: needs: checkout-and-cache name: Build and deploy cFE Docs - uses: $GITHUB_REPOSITORY/.github/workflows/build-deploy-doc.yml@main + #uses: $GITHUB_REPOSITORY/.github/workflows/build-deploy-doc.yml@main + uses: ./.github/workflows/build-deploy-doc.yml with: + path: $GITHUB_REPOSITORY + branch: main target: "[\"cfe-usersguide\"]" cache-key: cfs-doc-${{ github.run_number }} buildpdf: ${{ github.event_name == 'push' && contains(github.ref, 'main')}} @@ -63,14 +66,17 @@ jobs: build-mission-doc: needs: checkout-and-cache name: Build Mission Doc - #uses: nasa/cFS/.github/workflows/build-deploy-doc.yml - uses: $GITHUB_REPOSITORY/.github/workflows/build-deploy-doc.yml@main + #uses: nasa/cFS/.github/workflows/build-deploy-doc.yml@main + uses: ./.github/workflows/build-deploy-doc.yml with: - target: "[\"mission-doc\"]" + path: $GITHUB_REPOSITORY + branch: main + target: '["mission-doc"]' cache-key: cfs-doc-${{ github.run_number }} deploy: false buildpdf: false # No need for mission pdf within cFE, done at bundle level + deploy-documentation: needs: build-cfe-usersguide if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}