Skip to content

Commit 0923f3a

Browse files
committed
Add hold/approval step before pushing to npm
1 parent 637885c commit 0923f3a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.circleci/config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ workflows:
128128
only: /^v\d*\.\d*\.\d*-beta\.\d*$/
129129
branches:
130130
ignore: /.*/
131-
- publish-stable:
131+
- hold:
132+
type: approval
132133
requires:
133134
- test-node8
134135
- test-node9
@@ -140,3 +141,11 @@ workflows:
140141
only: /^v\d*\.\d*\.\d*$/
141142
branches:
142143
ignore: /.*/
144+
- publish-stable:
145+
requires:
146+
- hold
147+
filters:
148+
tags:
149+
only: /^v\d*\.\d*\.\d*$/
150+
branches:
151+
ignore: /.*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-tc",
3-
"version": "6.4.0-beta.0",
3+
"version": "6.4.0",
44
"description": "ESLint shareable config for JavaScript projects",
55
"keywords": [
66
"eslintconfig",

0 commit comments

Comments
 (0)