Skip to content

Commit e4dd355

Browse files
authored
fixed packaging path (#102)
1 parent f096324 commit e4dd355

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
if: github.ref == 'refs/heads/master'
4949
with:
5050
token: ${{ secrets.NPM_TOKEN }}
51-
package: build/package.json
51+
package: package.json
5252
# don't try and deploy if versions haven't changed
5353
check-version: true
5454

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drand-client",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "A client to the drand randomness beacon network.",
55
"source": "lib/index.ts",
66
"main": "./build/cjs/index.js",
@@ -20,7 +20,9 @@
2020
},
2121
"files": [
2222
"build",
23-
"lib"
23+
"lib",
24+
"LICENSE",
25+
"README.md"
2426
],
2527
"scripts": {
2628
"clean": "rm -rf ./build/* && rm -rf lib/version.ts",

0 commit comments

Comments
 (0)