Skip to content

Commit 82cd71a

Browse files
authored
Fix release process (#176)
1 parent d8bf6ee commit 82cd71a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
node-version: "16"
2727

2828
- run: npm ci
29+
- run: npm run build
2930

3031
- name: Publish @withabound/node-sdk
3132
id: npm-publish

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@withabound/node-sdk",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "The Abound Node library provides convenient access to the Abound API from applications written in server-side JavaScript.",
55
"author": "Abound <[email protected]>",
66
"license": "MIT",
@@ -23,7 +23,6 @@
2323
"compile": "npx tsc --noEmit",
2424
"lint": "npx xo",
2525
"postinstall": "npx genversion --es6 --semi --double src/util/version.ts",
26-
"prepublishOnly": "npm run build",
2726
"test": "npx jest"
2827
},
2928
"lint-staged": {

src/util/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = "4.0.0";
2+
export const version = "4.0.1";

0 commit comments

Comments
 (0)