Skip to content

Commit 6ec4942

Browse files
committed
Fix release script: there's no package-lock.json in this repo
1 parent 136eac5 commit 6ec4942

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ jobs:
150150
--arg parentSha "$PARENT_SHA" \
151151
--arg headline "$RELEASE_TAG" \
152152
--rawfile pkgContent package.json \
153-
--rawfile lockContent package-lock.json \
154153
'{
155154
query: "mutation($input: CreateCommitOnBranchInput!) { createCommitOnBranch(input: $input) { commit { oid } } }",
156155
variables: {
@@ -160,8 +159,7 @@ jobs:
160159
expectedHeadOid: $parentSha,
161160
fileChanges: {
162161
additions: [
163-
{ path: "package.json", contents: ($pkgContent | @base64) },
164-
{ path: "package-lock.json", contents: ($lockContent | @base64) }
162+
{ path: "package.json", contents: ($pkgContent | @base64) }
165163
]
166164
}
167165
}

0 commit comments

Comments
 (0)