mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Testing workflows * Testing workflows * Testing workflows * Testing workflows * Testing workflows * Testing workflows * Update .github/workflows/run-test.yml --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
21 lines
414 B
YAML
21 lines
414 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/**"
|
|
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 }}
|