File tree 1 file changed +12
-11
lines changed
1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
- name : Publish
1
+ name : Publish TS SDK
2
2
3
3
on :
4
- release :
5
- types : [published]
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : ' Version to publish'
8
+ required : true
9
+ type : ' string'
6
10
7
11
jobs :
8
- publish :
12
+ publish-ts-sdk :
9
13
runs-on : ubuntu-latest
10
14
11
15
steps :
@@ -16,17 +20,13 @@ jobs:
16
20
cache : " npm"
17
21
registry-url : " https://registry.npmjs.org"
18
22
- run : npm ci
23
+ - run : npm run version $VERSION
19
24
- run : npm run build --if-present
20
25
- run : npm test
21
26
- run : |
22
- version="$GITHUB_REF_NAME"
23
-
24
- # Sync version number to all package.json files
25
- npm run version $version
26
-
27
- if [[ $version == *"beta"* ]]; then
27
+ if [[ $VERSION == *"beta"* ]]; then
28
28
tag=beta
29
- elif [[ $version == *"alpha"* ]]; then
29
+ elif [[ $VERSION == *"alpha"* ]]; then
30
30
tag=alpha
31
31
else
32
32
tag=latest
38
38
--workspace solana \
39
39
--workspace sdk/route
40
40
env:
41
+ VERSION: ${{ inputs.version }}
41
42
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
42
43
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry
You can’t perform that action at this time.
0 commit comments