mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-10 14:38:11 -05:00
26 lines
584 B
YAML
26 lines
584 B
YAML
name: Run devdocs deployment
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'master', 'main']
|
|
tags: [ 'v*' ]
|
|
pull_request:
|
|
branches: [ 'master', 'main']
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Fire devdocs
|
|
shell: bash
|
|
run: |
|
|
curl -X POST https://api.github.com/repos/CoolProp/devdocs/dispatches \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "Authorization: token ${{ secrets.DEVDOCS_RUN_PAT }}" \
|
|
-d '{"event_type":"triggered-by-CoolProp-main","client_payload":{"example":"data"}}'
|
|
|
|
|