Skip to content

Commit fe94261

Browse files
committed
🔀 Merge pull requests #389, #390, and #391 from 'v1.0.15/bump-the-version', 'ci/make-up-missing-comma' and 'v1.0.15/update-the-change-logs'
Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
4 parents 682d6cc + ac4128c + 9f74b2f + 13268de commit fe94261

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,15 @@ jobs:
1818
const child_process = require('node:child_process')
1919
child_process.exec(
2020
`git fetch --depth 1 origin +${ref}:${ref}`,
21-
{}
22-
(err, stdout, stderr) => child_process.exec(
21+
{},
22+
() => child_process.exec(
2323
`git for-each-ref --format='%(contents)' ${ref}`,
2424
{},
2525
async (err, stdout, stderr) => {
26-
if (err) {
27-
core.setFailed(err)
28-
return
29-
}
30-
const i = stdout.search(/^Signed\-off\-by\:\ /g)
31-
const j = stdout.search(/^\-{5}BEGIN\ PGP\ SIGNATURE\-{5}$/g)
26+
if (err)
27+
return core.setFailed(err)
28+
const i = stdout.search(/Signed\-off\-by\:\ /g)
29+
const j = stdout.search(/\-{5}BEGIN\ PGP\ SIGNATURE\-{5}$/g)
3230
const body = i < 0 ? j < 0 ? stdout : stdout.slice(0, j) : stdout.slice(0, i)
3331
const response = await github.request(
3432
`POST /repos/${owner}/${repo}/releases`,

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLogs
22

3+
## Version 1.0.15
4+
5+
- :green_heart: CI chore
6+
- The missing comma made up
7+
38
## Version 1.0.14
49

510
- :green_heart: CI chore

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"test": "run-p lint cover"
5757
},
5858
"types": "index.d.ts",
59-
"version": "1.0.14"
59+
"version": "1.0.15"
6060
}

0 commit comments

Comments
 (0)