Merge pull request #34484 from Baystation12/dependabot/github_actions… #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Documentation | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: # allows this workflow to be manually triggered | |
env: | |
SPACEMAN_DMM_VERSION: suite-1.7.3 | |
jobs: | |
PreFlight: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: paths-filter | |
uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd | |
id: filter | |
with: | |
filters: .github/workflow-config/preflight-filters.yml | |
outputs: | |
dm: ${{ steps.filter.outputs.dm }} | |
generate_documentation: | |
permissions: | |
contents: write # required to push the doc commit | |
runs-on: ubuntu-latest | |
needs: PreFlight | |
if: | | |
(needs.PreFlight.outputs.dm == 'true') && | |
!contains(github.event.head_commit.message, '[ci skip]') | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Setup Cache | |
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 | |
with: | |
path: ~/spaceman_dmm/${{ env.SPACEMAN_DMM_VERSION }} | |
key: ${{ runner.os }}-spacemandmm-${{ env.SPACEMAN_DMM_VERSION }} | |
- name: Install dmdoc | |
run: scripts/install-spaceman-dmm.sh dmdoc | |
- name: Generate documentation | |
run: | | |
~/dmdoc | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@65b5dfd4f5bcd3a7403bbc2959c144256167464e | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: dmdoc | |
target-folder: docs | |
clean: true |