Skip to content

Commit 7052112

Browse files
committed
chore: update 2.0.0-rc.0
1 parent ab15894 commit 7052112

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/manual-publisher.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ name: Manual Publisher
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: 'Tag'
8+
required: true
9+
options:
10+
- rc
11+
- beta
12+
- alpha
513

614
jobs:
715
build-and-publish:
@@ -18,7 +26,7 @@ jobs:
1826
- run: |
1927
pnpm i
2028
pnpm run build
21-
pnpm publish
29+
pnpm publish --tag ${{github.event.inputs.tag}}
2230
env:
2331
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2432
REGISTRY: https://registry.npmjs.org

packages/spec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ice/spec",
3-
"version": "2.0.0",
3+
"version": "2.0.0-rc.0",
44
"description": "Easy to use eslint/stylelint/prettier/commitlint in ice project.",
55
"type": "module",
66
"main": "./es2017/index.js",

0 commit comments

Comments
 (0)