File tree Expand file tree Collapse file tree 8 files changed +62
-37
lines changed
packages/fluster_developer Expand file tree Collapse file tree 8 files changed +62
-37
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Changesets
2+ on :
3+ push :
4+ branches :
5+ - release
6+ concurrency : ${{ github.workflow }}-${{ github.ref }}
7+ jobs :
8+ release :
9+ name : Release
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout Repo
13+ uses : actions/checkout@v3
14+ - name : Setup Node.js 20.x
15+ uses : actions/setup-node@v3
16+ with :
17+ node-version : 20.x
18+ - name : Setup pnpm
19+ uses : pnpm/action-setup@v4
20+ - name : Install Dependencies
21+ run : pnpm install
22+ - name : Create Release Pull Request or Publish to npm
23+ id : changesets
24+ uses : changesets/action@v1
25+ with :
26+ # This expects you to have a script called release which does a build for your packages and calls changeset publish
27+ publish : pnpm release
28+ env :
29+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30+ NPM_TOKEN : ${{ secrets.FLUSTER_NPM_TOKEN }}
31+ FLUSTER_NPM_TOKEN : ${{ secrets.FLUSTER_NPM_TOKEN }}
Original file line number Diff line number Diff line change 11# fluster
22
3+ ## 0.1.6
4+
5+ ### Patch Changes
6+
7+ - Updated dependencies
8+ - @fluster .io/dev@0.0.6
9+
310## 0.1.5
411
512### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " fluster" ,
3- "version" : " 0.1.5 " ,
3+ "version" : " 0.1.6 " ,
44 "funding" : [
55 {
66 "type" : " paypal" ,
Original file line number Diff line number Diff line change 11# @fluster /plugin_template
22
3+ ## 0.0.6
4+
5+ ### Patch Changes
6+
7+ - Updated dependencies
8+ - @fluster .io/dev@0.0.6
9+
310## 0.0.5
411
512### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @fluster/plugin_template" ,
3- "version" : " 0.0.5 " ,
3+ "version" : " 0.0.6 " ,
44 "keywords" : [
55 " fluster" ,
66 " plugin"
Original file line number Diff line number Diff line change 11# @fluster .io/dev
22
3+ ## 0.0.6
4+
5+ ### Patch Changes
6+
7+ - Update to release beta.
8+
39## 0.0.5
410
511### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @fluster.io/dev" ,
3- "version" : " 0.0.5 " ,
3+ "version" : " 0.0.6 " ,
44 "funding" : [
55 {
66 "type" : " paypal" ,
3030 "dev" : " storybook dev -p 6006" ,
3131 "lint" : " eslint ." ,
3232 "preview" : " vite preview" ,
33- "ci:publish " : " pnpm changeset publish "
33+ "release " : " wireit "
3434 },
3535 "wireit" : {
36+ "release" : {
37+ "clean" : false ,
38+ "dependencies" : [
39+ " build"
40+ ],
41+ "command" : " pnpm changeset release"
42+ },
3643 "build" : {
3744 "clean" : false ,
3845 "command" : " tsc && vite build" ,
You can’t perform that action at this time.
0 commit comments