corpus

Log | Files | Refs | README | LICENSE

commit 6a7d64a711c300f1a7436fd5eb413f093316a65c
parent 62eb8719333225ced9b5f1c772b1f5a3235bab2e
Author: mtmn <miro@haravara.org>
Date:   Wed, 13 May 2026 19:00:07 +0200

fix(ci): run npm install on release

Diffstat:
Mhack/release | 5++++-
Mpackage-lock.json | 4++--
2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/hack/release b/hack/release @@ -30,6 +30,9 @@ echo "releasing -> v$next" jq --arg v "$next" '.version = $v' package.json >package.json.tmp mv package.json.tmp package.json +# --- update package-lock.json --- +npm install + git-cliff --tag "v$next" --output CHANGELOG.md sed -i -e :a -e '/^\s*$/{$d;N;ba' -e '}' CHANGELOG.md @@ -42,7 +45,7 @@ fi # --- commit, tag, push --- -git add package.json CHANGELOG.md flake.nix +git add package.json package-lock.json CHANGELOG.md flake.nix git commit --no-verify -m "chore: release v$next" git tag -a "v$next" -m "release v$next" git push diff --git a/package-lock.json b/package-lock.json @@ -1,12 +1,12 @@ { "name": "corpus", - "version": "2.13.0", + "version": "2.14.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "corpus", - "version": "2.13.0", + "version": "2.14.2", "dependencies": { "@aws-sdk/client-s3": "^3.1029.0", "dotenv": "^17.4.1",