-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 967 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Release Packages
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
SKIP_INSTALL_SIMPLE_GIT_HOOKS: true
jobs:
release:
name: Release Packages to NPM Registry
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Build Environment
uses: ./.github/setup
- name: Version or Publish Changed Packages
id: changesets
uses: changesets/action@v1
with:
version: pnpm run changeset:version
publish: |
| pnpm run build --filter="./packages/*"
| pnpm run changeset:publish
title: 'chore(release): version packages'
commit: 'chore(release): version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}