Skip to content

Commit 17d9321

Browse files
committed
Push with changeset
1 parent 49468ce commit 17d9321

File tree

8 files changed

+62
-37
lines changed

8 files changed

+62
-37
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/release_node.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 }}

apps/fluster/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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

apps/fluster/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluster",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"funding": [
55
{
66
"type": "paypal",

apps/plugin_template/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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

apps/plugin_template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fluster/plugin_template",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"keywords": [
55
"fluster",
66
"plugin"

packages/fluster_developer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

packages/fluster_developer/package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fluster.io/dev",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"funding": [
55
{
66
"type": "paypal",
@@ -30,9 +30,16 @@
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",

0 commit comments

Comments
 (0)