Skip to content

[MIRROR] Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #17

[MIRROR] Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8

[MIRROR] Bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #17

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@692973e3d937129bcbf40652eb9f2f61becf3332
- name: paths-filter
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
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@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Setup Cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
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
<<<<<<< ours

Check failure on line 52 in .github/workflows/generate_documentation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/generate_documentation.yml

Invalid workflow file

You have an error in your yaml syntax on line 52
uses: JamesIves/github-pages-deploy-action@94f3c658273cf92fb48ef99e5fbc02bd2dc642b2
=======
uses: JamesIves/github-pages-deploy-action@881db5376404c5c8d621010bcbec0310b58d5e29
>>>>>>> theirs
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: dmdoc
target-folder: docs
clean: true