Publish packages #231
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: 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@v4 | |
- uses: ./.github/workflows/actions/prepare | |
- name: Create Prisma client | |
run: pnpm exec prisma generate | |
# 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: ./.github/workflows/actions/type-check-with-cache | |
- run: pnpm run build | |
- 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 }} |