We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 136eac5 commit 6ec4942Copy full SHA for 6ec4942
1 file changed
.github/workflows/release.yml
@@ -150,7 +150,6 @@ jobs:
150
--arg parentSha "$PARENT_SHA" \
151
--arg headline "$RELEASE_TAG" \
152
--rawfile pkgContent package.json \
153
- --rawfile lockContent package-lock.json \
154
'{
155
query: "mutation($input: CreateCommitOnBranchInput!) { createCommitOnBranch(input: $input) { commit { oid } } }",
156
variables: {
@@ -160,8 +159,7 @@ jobs:
160
159
expectedHeadOid: $parentSha,
161
fileChanges: {
162
additions: [
163
- { path: "package.json", contents: ($pkgContent | @base64) },
164
- { path: "package-lock.json", contents: ($lockContent | @base64) }
+ { path: "package.json", contents: ($pkgContent | @base64) }
165
]
166
}
167
0 commit comments