blob: 3e7503cfdc77c4d00493c53563e1a52c3aa4a42f [file] [log] [blame]
Davide Pesavento8dce1942021-10-02 22:31:26 -04001name: Docs
2on:
3 push:
Davide Pesavento8dce1942021-10-02 22:31:26 -04004 workflow_dispatch:
Davide Pesavento46bac782023-02-19 20:32:24 -05005 inputs:
6 skip-deploy:
7 description: 'Skip deployment?'
8 required: true
9 type: boolean
Davide Pesavento8dce1942021-10-02 22:31:26 -040010
Davide Pesavento46bac782023-02-19 20:32:24 -050011permissions: {}
Davide Pesavento8dce1942021-10-02 22:31:26 -040012
13jobs:
Davide Pesavento46bac782023-02-19 20:32:24 -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/0.')) }}
19 secrets: inherit