chore(deps): bump class-variance-authority in /native #798
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
on: | |
push: | |
paths: | |
- "mono/docs/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
TURBO_URL: ${{ secrets.TURBO_URL }} | |
TURBO_CODE: ${{ secrets.TURBO_CODE }} | |
defaults: | |
run: | |
working-directory: mono | |
permissions: | |
contents: read | |
deployments: write | |
name: Deploy | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
with: | |
version: 9.12.2 | |
- name: install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: build | |
run: cd docs/starlight && pnpm build:ci | |
- name: publish docs | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: gg-docs | |
directory: mono/docs/starlight/dist # e.g. 'dist' | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} |