Skip to content

Commit c3eebe0

Browse files
Merge pull request #264 from XavierGeerinck/issue_263
Resolve build step and upload the correct folder
2 parents e4f8245 + 5e760a6 commit c3eebe0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
# note: package.json gets updated here for the new package name
5555
- name: Publish to npm (@dapr/dapr)
5656
if: env.DEPLOY_PACKAGE == 'true'
57-
run: npm publish --access public
57+
run: npm publish build/ --access public
5858
env:
5959
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6060

@@ -69,6 +69,6 @@ jobs:
6969
# note: package.json gets updated here for the new package name
7070
- name: "[dapr-client] Publish to npm (dapr-client)"
7171
if: env.DEPLOY_PACKAGE == 'true'
72-
run: npm publish --access public
72+
run: npm publish build/ --access public
7373
env:
7474
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dapr/dapr",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "The official Dapr (https://dapr.io) SDK for Node.js",
55
"types": "http/index.d.ts",
66
"scripts": {

0 commit comments

Comments
 (0)