Skip to content

ci: use a variable POLAR_OPENAPI_SCHEMA_URL instead of a secret #5805

ci: use a variable POLAR_OPENAPI_SCHEMA_URL instead of a secret

ci: use a variable POLAR_OPENAPI_SCHEMA_URL instead of a secret #5805

Workflow file for this run

name: Chromatic
on:
push:
paths:
- clients/**
- .github/workflows/chromatic.yaml
jobs:
chromatic-deployment:
name: "Publish 🎨"
timeout-minutes: 15
runs-on: ubuntu-22.04
env:
POLAR_OPENAPI_SCHEMA_URL: ${{ vars.POLAR_OPENAPI_SCHEMA_URL }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0 # chromatic requires the full history for it's smartness
- uses: pnpm/action-setup@v4
with:
version: 9.2.0
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: clients/.node-version
cache: "pnpm"
cache-dependency-path: "clients/pnpm-lock.yaml"
- name: Install dependencies
working-directory: ./clients
run: pnpm install
- name: Build SDK
working-directory: ./clients
run: pnpm turbo run build --filter=@polar-sh/sdk
- name: Publish to Chromatic
uses: chromaui/action@v11
with:
projectToken: ${{ secrets.CI_CHROMATIC_PROJECT_TOKEN }}
workingDir: ./clients/apps/web
onlyChanged: true
exitOnceUploaded: true