C3 - fix and update solid #508
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 all Pages sites | |
# On a push to `main` or a PR that has one of the `preview:...`` labels, | |
# 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: these actions are not for running tests against these packages, | |
# only for deploying. | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [synchronize, opened, reopened, labeled, unlabeled] | |
# There's a fair amount of manual duplication in this file, but it's unfortunately all needed | |
# In particular, GH Actions doesn't support the `matrix` context in `if` conditions, and so | |
# using a matrix would make it impossible to skip a deploy at the job level | |
jobs: | |
wrangler-devtools: | |
name: Wrangler DevTools | |
if: github.repository_owner == 'cloudflare' && (github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.*.labels.*.name, 'preview:wrangler-devtools' ))) | |
uses: ./.github/workflows/deploy-pages-project.yml | |
with: | |
package: "wrangler-devtools" | |
secrets: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
# Quick Edit requires yarn, so needs fairly specific logic | |
quick-edit: | |
name: Quick Edit | |
if: github.repository_owner == 'cloudflare' && (github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.*.labels.*.name, 'preview:quick-edit' ))) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
env: | |
node-version: 16.18 | |
- name: Build | |
run: pnpm run build | |
env: | |
CI_OS: ${{ runner.os }} | |
- name: Build Quick Edit | |
run: cd packages/quick-edit && yarn setup && yarn custom:build | |
env: | |
NPM_PUBLISH_TOKEN: NOT_USED # yarn will error if the env var from .npmrc can't be interpolated | |
- name: Publish Quick Edit | |
run: pnpm --filter quick-edit run deploy | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
workers-playground: | |
name: Workers Playground | |
if: github.repository_owner == 'cloudflare' && (github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.*.labels.*.name, 'preview:workers-playground' ))) | |
uses: ./.github/workflows/deploy-pages-project.yml | |
with: | |
package: "workers-playground" | |
secrets: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} |