on by default: –x-dev-env #5924
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Pages Previews | |
# This workflow is designed to deploy a "preview" version of a Pages project based on PR labels. | |
# Triggers: | |
# - update to a PR that has one of the `preview:...` labels | |
# | |
# Actions: | |
# - deploy the matching Pages project to Cloudflare. | |
# | |
# PR Label | Pages Project | |
# --------------------------------------------------------- | |
# preview:wrangler-devtools | packages/wrangler-devtools | |
# preview:quick-edit | packages/quick-edit | |
# preview:workers-playground | packages/workers-playground | |
# | |
# Note: this workflow does not run tests against these packages, only for deploys previews. | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened, labeled, unlabeled] | |
jobs: | |
deploy-pages-projects: | |
# Only run this on PRs that are for the "cloudflare" org and not "from" `main` | |
# - non-Cloudflare PRs will not have the secrets needed | |
# - PRs "from" main would accidentally do a production deployment | |
if: github.repository_owner == 'cloudflare' && github.head_ref != 'main' && (contains(github.event.*.labels.*.name, 'preview:wrangler-devtools') || contains(github.event.*.labels.*.name, 'preview:quick-edit') || contains(github.event.*.labels.*.name, 'preview:workers-playground')) | |
timeout-minutes: 60 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
with: | |
node-version: 18.18 | |
- name: Build tools and libraries | |
run: pnpm run build | |
env: | |
NODE_ENV: "production" | |
CI_OS: ${{ runner.os }} | |
- name: Deploy Wrangler DevTools preview | |
if: contains(github.event.*.labels.*.name, 'preview:wrangler-devtools') | |
run: pnpm --filter @cloudflare/wrangler-devtools run deploy | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
- name: Build and Deploy Quick Edit preview | |
if: contains(github.event.*.labels.*.name, 'preview:quick-edit') | |
# Quick Edit requires yarn and VS Code build deps, so needs fairly specific logic | |
run: | | |
cd packages/quick-edit | |
pnpm run deploy | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
- name: Deploy Workers Playground preview | |
if: contains(github.event.*.labels.*.name, 'preview:workers-playground') | |
run: pnpm --filter workers-playground run build:testing && pnpm --filter workers-playground run deploy | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} |