mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
22 lines
440 B
YAML
22 lines
440 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/**"
|
|
- "CONTRIBUTING.md"
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Deploy
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository_owner == 'oven-sh' }}
|
|
steps:
|
|
# redeploy Vercel site when a file in `docs` changes
|
|
# using VERCEL_DEPLOY_HOOK environment variable
|
|
- name: Trigger Webhook
|
|
run: |
|
|
curl -v ${{ secrets.VERCEL_DEPLOY_HOOK }}
|