From eb3c3b1c6b6d80b4ced83142e23c954ca1b23f81 Mon Sep 17 00:00:00 2001 From: Mark Wubben Date: Thu, 16 Apr 2026 21:43:13 +0200 Subject: [PATCH] Fix release script: there's no package-lock.json in this repo --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd668b3..4afa9c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -150,7 +150,6 @@ jobs: --arg parentSha "$PARENT_SHA" \ --arg headline "$RELEASE_TAG" \ --rawfile pkgContent package.json \ - --rawfile lockContent package-lock.json \ '{ query: "mutation($input: CreateCommitOnBranchInput!) { createCommitOnBranch(input: $input) { commit { oid } } }", variables: { @@ -160,8 +159,7 @@ jobs: expectedHeadOid: $parentSha, fileChanges: { additions: [ - { path: "package.json", contents: ($pkgContent | @base64) }, - { path: "package-lock.json", contents: ($lockContent | @base64) } + { path: "package.json", contents: ($pkgContent | @base64) } ] } }