Skip to content

Commit

Permalink
chore!: Bump up version [skip ci]
Browse files Browse the repository at this point in the history
Fix release pipeline
  • Loading branch information
Jungwoo-An committed Nov 6, 2021
1 parent ea3f7a7 commit 1981a8a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
if: "github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 14
Expand All @@ -21,4 +23,6 @@ jobs:
key: react-editor-js-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn build
- run: yarn release --ci
- run: git config user.email "o1o9814@naver.com"
- run: git config user.name "Jungwoo-An"
- run: yarn release --ci --dry-run --debug
6 changes: 2 additions & 4 deletions .release-it.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
module.exports = {
git: {
tagName: 'v${version}',
tagName: '${version}',
requireCleanWorkingDir: false,
commitMessage: 'release: v${version}\n\n[skip ci]',
},
github: {
release: true,
},
npm: {
publish: true,
},
npm: false,
plugins: {
'release-it-yarn-workspaces': {
skipChecks: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"author": "Jungwoo An <o1o9814@naver.com>",
"version": "2.0.0",
"version": "1.10.0",
"private": true,
"scripts": {
"release": "release-it",
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-editor-js/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-editor-js/client",
"version": "2.0.0",
"version": "1.10.0",
"description": "The unofficial editor-js component for React on client",
"main": "./dist/client.cjs.js",
"module": "./dist/client.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-editor-js/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-editor-js/core",
"version": "2.0.0",
"version": "1.10.0",
"description": "The unofficial editor-js component for React on client",
"main": "./dist/core.cjs.js",
"module": "./dist/core.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-editor-js/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-editor-js/server",
"version": "2.0.0",
"version": "1.10.0",
"description": "The unofficial editor-js component for React on server",
"main": "./dist/server.cjs.js",
"module": "./dist/server.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-editor-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-editor-js",
"version": "2.0.0",
"version": "1.10.0",
"description": "The unofficial editor-js component for React",
"main": "./dist/react-editor-js.cjs.js",
"module": "./dist/react-editor-js.js",
Expand Down

0 comments on commit 1981a8a

Please sign in to comment.