We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8115ab commit 0a90fdfCopy full SHA for 0a90fdf
.github/workflows/npmPublish.yml
@@ -2,11 +2,6 @@ name: Publish to npm
2
3
on:
4
workflow_dispatch:
5
- inputs:
6
- npm_tag:
7
- description: "Release type latest"
8
- required: true
9
- default: "latest"
10
11
jobs:
12
build:
@@ -23,6 +18,9 @@ jobs:
23
18
node-version: "14" # Use Node.js version 14
24
19
cache: "yarn"
25
20
21
+ - name: Install tsx
22
+ run: npm install -g tsx
+
26
- name: Install dependencies
27
working-directory: ./sdk
28
run: yarn install
@@ -39,6 +37,6 @@ jobs:
39
37
40
38
- name: Push to npm
41
42
- run: npm publish --tag ${{ github.event.inputs.npm_tag }}
+ run: npm publish
43
env:
44
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments