ci: add job to automatically deploy docs (#1711)

* ci: add job to automatically deploy docs

* empty commit to re-trigger CI
This commit is contained in:
metonym 2023-03-29 19:05:38 -07:00 committed by GitHub
commit 50147439b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,3 +23,13 @@ jobs:
yarn build:lib yarn build:lib
yarn test:types yarn test:types
yarn lint yarn lint
deploy-docs:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Trigger deploy
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
run: |
curl -X GET "$deploy_url"