Skip to content

Commit

Permalink
Fix nasa#286, Documentation Duplicate Check
Browse files Browse the repository at this point in the history
  • Loading branch information
arielswalker committed Jul 7, 2021
1 parent fb2968d commit 3a74b3b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ jobs:
exit -1
fi
pdf-usersguide:
# Name the Job
name: PDF Users Guide
# Set the type of machine to run on
runs-on: ubuntu-18.04

steps:

- name: PDF generation installs
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
Expand All @@ -153,7 +161,7 @@ jobs:
FOLDER: deploy
CLEAN: false
SINGLE_COMMIT: true

build-osalguide:
# Name the Job
needs: checks-for-duplicates
Expand Down Expand Up @@ -212,7 +220,14 @@ jobs:
cat osal-apiguide-warnings.log
exit -1
fi
pdf-osalguide:
# Name the Job
name: PDF Osal Guide
# Set the type of machine to run on
runs-on: ubuntu-18.04

steps:
- name: PDF generation installs
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
Expand Down

0 comments on commit 3a74b3b

Please sign in to comment.