Skip to content

Commit

Permalink
Merge pull request nasa#248 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
cFS bundle Integration candidate: 2021-04-20
  • Loading branch information
astrogeco committed Apr 22, 2021
2 parents 397c6b1 + 8872aec commit a4787c2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ jobs:
build-usersguide:
# 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
Expand Down Expand Up @@ -127,12 +129,12 @@ jobs:
fi
- name: PDF generation installs
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
- name: PDF generation
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
set -x
mkdir deploy
Expand All @@ -143,7 +145,7 @@ jobs:
# pandoc CFE_Users_Guide.pdf -t gfm
- name: Deploy
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -154,6 +156,8 @@ jobs:

build-osalguide:
# Name the Job
needs: checks-for-duplicates
if: ${{ needs.checks-for-duplicates.outputs.should_skip != 'true' }}
name: Osal Guide
# Set the type of machine to run on
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -210,12 +214,12 @@ jobs:
fi
- name: PDF generation installs
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
- name: PDF generation
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
mkdir deploy
cd ./build/doc/osalguide/latex
Expand All @@ -225,7 +229,7 @@ jobs:
# pandoc CFE_Users_Guide.pdf -t gfm
- name: Deploy
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion tools/cFS-GroundSystem

0 comments on commit a4787c2

Please sign in to comment.