Skip to content

Publish packages

Publish packages #179

name: Preview versions
on:
workflow_dispatch:
push:
branches:
- changeset-release/main
jobs:
preview:
name: Preview 🔮
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/actions/prepare
- name: Create Prisma client
run: pnpm exec prisma generate --no-engine
# Changeset entries are consumed on this branch. We need to reset the
# changeset files so that the snapshot command knows the correct packages,
# and does not accidentally publish the new, non-preview version numbers
# prematurely.
- name: Reset changeset entries
run: |
git fetch origin main
git checkout origin/main -- .changeset
- uses: quilt-framework/action-build@v2
with:
cache-key: ${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Deploy preview versions to NPM
run: pnpm run packages.deploy.preview
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}