Skip to content

Commit

Permalink
Fix invalid value workflow reference
Browse files Browse the repository at this point in the history
  • Loading branch information
arielswalker authored Sep 4, 2024
1 parent 318e139 commit 2601fd9
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')}}
Expand All @@ -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')}}
Expand Down

0 comments on commit 2601fd9

Please sign in to comment.