Skip to content

Commit

Permalink
ci: add developer docs rebuild workflow (#398)
Browse files Browse the repository at this point in the history
* ci: add base rebuild workflow

* ci: add cli-utils-cypress specific files
  • Loading branch information
ismay committed Nov 15, 2023
1 parent b882d61 commit 509afd7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rebuild-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'dhis2: rebuild developer docs'

on:
push:
branches:
- master
paths:
- 'docs/**'
- 'CHANGELOG.md'

concurrency:
group: ${{ github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
rebuild-docs:
runs-on: ubuntu-latest
steps:
- run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_DEVELOPER_DOCS_TOKEN }}

0 comments on commit 509afd7

Please sign in to comment.