Skip to content

Fix Binance Spot SBE quotes stream #521

Fix Binance Spot SBE quotes stream

Fix Binance Spot SBE quotes stream #521

Workflow file for this run

name: build-docs
permissions: # Principle of least privilege
contents: read
actions: read
on:
push:
branches: [master, nightly]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
# https://github.com/step-security/harden-runner
- uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- name: Fire event to nautilus_docs
run: |
curl -sS -L --retry 5 --retry-delay 2 --retry-all-errors --connect-timeout 5 --max-time 60 --fail-with-body \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${{ secrets.REPOSITORY_ACCESS_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/nautechsystems/nautilus_docs/dispatches \
-d '{"event_type":"push"}'