Skip to content

Commit

Permalink
Fix nasa#298, Run Documentation and Guides on Push
Browse files Browse the repository at this point in the history
  • Loading branch information
arielswalker committed Jul 14, 2021
1 parent fb2968d commit 3202c49
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
concurrent_skipping: 'same_content'
skip_after_successful_duplicate: 'true'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
do_not_skip: '["push", "workflow_dispatch", "schedule"]'

build-docs:
#Continue if checks-for-duplicates found no duplicates. Always runs for pull-requests.
Expand All @@ -33,8 +33,8 @@ jobs:
steps:
- name: Install Dependencies
run: sudo apt-get install doxygen graphviz -y

# Check out the cfs bundle

- name: Checkout code
uses: actions/checkout@v2
with:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Build Docs
run: |
make doc > make_doc_stdout.txt 2> make_doc_stderr.txt
# Upload documentation logs as artifacts
- name: Archive Documentation Build Logs
uses: actions/upload-artifact@v2
Expand All @@ -74,10 +74,10 @@ jobs:
# Name the Job
needs: checks-for-duplicates
if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }}

name: Users Guide
# Set the type of machine to run on
runs-on: ubuntu-18.04

steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
Expand Down Expand Up @@ -236,4 +236,4 @@ jobs:
BRANCH: gh-pages
FOLDER: deploy
CLEAN: false
SINGLE_COMMIT: true
SINGLE_COMMIT: true

0 comments on commit 3202c49

Please sign in to comment.