Skip to content

Commit f96841b

Browse files
committed
Add missing build step during publish
1 parent 6bde380 commit f96841b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/node-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
registry-url: "https://registry.npmjs.org"
2020
- name: Install dependencies
2121
run: yarn install --frozen-lockfile
22-
- run: yarn bundle # Also runs build
22+
- run: yarn build
23+
- run: yarn bundle
2324
- run: yarn publish
2425
env:
2526
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": "metafold",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Metafold SDK for Node.js",
55
"main": "lib/metafold.js",
66
"type": "module",

0 commit comments

Comments
 (0)