Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d243e70

Browse files
committedFeb 14, 2025·
chore: publish workflows
1 parent 80e605d commit d243e70

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed
 

‎.github/workflows/publish-canary.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release to NPM Canary
2+
3+
on: workflow_dispatch
4+
5+
concurrency: ${{ github.workflow }}-${{ github.ref }}
6+
7+
jobs:
8+
release:
9+
name: Release
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
- uses: pnpm/action-setup@v4
17+
with:
18+
version: 9
19+
20+
- name: Install dependencies
21+
run: pnpm build:prepare
22+
- name: Build
23+
run: pnpm build
24+
25+
- name: Version changesets
26+
run: pnpm run version
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
30+
- name: Publish to npm canary
31+
id: changesets
32+
uses: changesets/action@v1
33+
with:
34+
publish: pnpm changeset publish --tag canary
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

‎.github/workflows/publish.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
title: "chore: bump packages version"
3737
commit: "chore: bump packages version"
3838
version: pnpm run version
39-
# This expects you to have a script called release which does a build for your packages and calls changeset publish
40-
publish: pnpm run publish
39+
publish: pnpm changeset publish
4140
env:
4241
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4342
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.