Merge branch 'main' of https://github.com/unkeyed/unkey #2203
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
# most of this is copied from https://github.com/t3-oss/create-t3-app/blob/next/.github/workflows/release.yml | |
name: Prepare Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
pr: | |
name: Release Packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
ts: true | |
- name: Build packages | |
run: pnpm turbo run build --filter='./packages/*' | |
- name: Create Version PR or Publish to NPM | |
id: changesets | |
uses: changesets/action@v1.4.8 | |
with: | |
commit: "chore(release): version packages" | |
title: "chore(release): version packages" | |
version: pnpm bump-versions | |
publish: pnpm changeset publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |