We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab15894 commit 7052112Copy full SHA for 7052112
.github/workflows/manual-publisher.yml
@@ -2,6 +2,14 @@ name: Manual Publisher
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ tag:
7
+ description: 'Tag'
8
+ required: true
9
+ options:
10
+ - rc
11
+ - beta
12
+ - alpha
13
14
jobs:
15
build-and-publish:
@@ -18,7 +26,7 @@ jobs:
18
26
- run: |
19
27
pnpm i
20
28
pnpm run build
21
- pnpm publish
29
+ pnpm publish --tag ${{github.event.inputs.tag}}
22
30
env:
23
31
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
24
32
REGISTRY: https://registry.npmjs.org
packages/spec/package.json
@@ -1,6 +1,6 @@
1
{
"name": "@ice/spec",
- "version": "2.0.0",
+ "version": "2.0.0-rc.0",
"description": "Easy to use eslint/stylelint/prettier/commitlint in ice project.",
"type": "module",
"main": "./es2017/index.js",
0 commit comments