blob: f066452345ff8a208bc0c0497afe16054641b737 [file] [log] [blame]
Davide Pesaventoba8a4ed2021-10-13 21:28:43 -04001name: Docs
2on:
3 push:
Davide Pesaventoba8a4ed2021-10-13 21:28:43 -04004 workflow_dispatch:
Davide Pesaventofa54ee92023-02-20 04:16:51 -05005 inputs:
6 skip-deploy:
7 description: 'Skip deployment?'
8 required: true
9 type: boolean
Davide Pesaventoba8a4ed2021-10-13 21:28:43 -040010
Davide Pesaventofa54ee92023-02-20 04:16:51 -050011permissions: {}
Davide Pesaventoba8a4ed2021-10-13 21:28:43 -040012
13jobs:
Davide Pesaventofa54ee92023-02-20 04:16:51 -050014 html:
15 uses: named-data/actions/.github/workflows/docs-html.yml@v1
16 with:
17 # Deploy only the master branch and release tags
18 deploy: ${{ !inputs.skip-deploy && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/NLSR-')) }}
19 secrets: inherit
20 man:
21 uses: named-data/actions/.github/workflows/docs-man.yml@v1