diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 84d619e07..3ba6c8f0f 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -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 @@ -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 @@ -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/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -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 @@ -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 @@ -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/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/cfe b/cfe index e80aae94e..73c338d54 160000 --- a/cfe +++ b/cfe @@ -1 +1 @@ -Subproject commit e80aae94e0f56b868657daba965c590766a4dc57 +Subproject commit 73c338d544f85cb0c1a97b743d3ae9f7a35039b5 diff --git a/osal b/osal index b37da18bd..afb5f7ba3 160000 --- a/osal +++ b/osal @@ -1 +1 @@ -Subproject commit b37da18bd5efed6d86344e4cafaa42c833b015fb +Subproject commit afb5f7ba3ea48823e44490ce4258aa92a073087f diff --git a/tools/cFS-GroundSystem b/tools/cFS-GroundSystem index b4bd97943..5deb0f034 160000 --- a/tools/cFS-GroundSystem +++ b/tools/cFS-GroundSystem @@ -1 +1 @@ -Subproject commit b4bd97943513b37d767f4201c3830c308a6c0a49 +Subproject commit 5deb0f0341f2ccd78ce1d9ca26e82dac5ccc11d0