mirror of
https://github.com/httpie/cli.git
synced 2024-11-23 00:03:18 +01:00
19 lines
320 B
YAML
19 lines
320 B
YAML
|
name: Update documentation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- docs/README.md
|
||
|
release:
|
||
|
types:
|
||
|
- published
|
||
|
|
||
|
jobs:
|
||
|
trigger-doc-build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Trigger new documentation build
|
||
|
run: curl -X POST ${{ secrets.DOCS_UPDATE_VERCEL_HOOK }}
|