Skip to content

Commit fe5df8e

Browse files
authored
cd: ensure settings are processed by release-please (#4270)
1 parent a65c706 commit fe5df8e

4 files changed

Lines changed: 16 additions & 10 deletions

File tree

.github/release/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"packages": {
3+
".": {
4+
"changelog-path": "Changelog.md",
5+
"include-component-in-tag": false,
6+
"package-name": "mysql2",
7+
"release-type": "node"
8+
}
9+
}
10+
}

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,19 @@ jobs:
1515
steps:
1616
- uses: googleapis/release-please-action@v4
1717
id: release
18+
with:
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
config-file: .github/release/config.json
21+
manifest-file: .github/release/manifest.json
1822

1923
- uses: actions/checkout@v6
2024
if: ${{ steps.release.outputs.release_created }}
2125

2226
- uses: actions/setup-node@v6
2327
if: ${{ steps.release.outputs.release_created }}
2428
with:
25-
node-version: 22
29+
check-latest: true
30+
node-version: lts/*
2631
registry-url: 'https://registry.npmjs.org'
2732
package-manager-cache: false
2833

release-please-config.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)