2022-01-26 10:50:22 +01:00
|
|
|
name: Deploy Documentation
|
|
|
|
|
2021-09-08 11:03:15 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- docs/README.md
|
2021-09-10 20:05:23 +02:00
|
|
|
- docs/config.json
|
2021-09-08 11:03:15 +02:00
|
|
|
release:
|
|
|
|
types:
|
|
|
|
- published
|
2021-09-10 20:06:29 +02:00
|
|
|
- unpublished
|
|
|
|
- deleted
|
2021-09-08 11:03:15 +02:00
|
|
|
jobs:
|
|
|
|
trigger-doc-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-09-15 14:25:46 +02:00
|
|
|
- name: Install HTTPie
|
|
|
|
run: sudo snap install --edge httpie
|
2021-09-08 11:03:15 +02:00
|
|
|
- name: Trigger new documentation build
|
2021-09-15 14:25:46 +02:00
|
|
|
run: http --ignore-stdin POST ${{ secrets.DOCS_UPDATE_VERCEL_HOOK }}
|