1# Generated from xtask::workflows::deploy_docs_nightly_pr
2# Rebuild with `cargo xtask workflows`.
3name: deploy_docs_nightly_pr
4on:
5 push:
6 branches:
7 - staged-docs-releases
8jobs:
9 deploy_docs:
10 if: github.repository_owner == 'zed-industries'
11 permissions:
12 contents: read
13 uses: ./.github/workflows/deploy_docs.yml
14 secrets:
15 DOCS_AMPLITUDE_API_KEY: ${{ secrets.DOCS_AMPLITUDE_API_KEY }}
16 CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
17 CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
18 with:
19 channel: nightly
20 checkout_ref: ${{ github.sha }}
21defaults:
22 run:
23 shell: bash -euxo pipefail {0}