Skip to content

Commit 3299fa3

Browse files
committed
Fix release-please configs
1 parent 52a64b0 commit 3299fa3

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/release-please.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
patch: ${{ steps.release.outputs.patch }}
1616
steps:
1717
# Create/update release PR
18-
# See also settings in .release-please-manifest.json
1918
- uses: google-github-actions/release-please-action@v4
2019
id: release
2120
with:
2221
# Make sure we create the PR against the correct branch.
2322
target-branch: ${{ github.ref_name }}
2423
# Use a special shaka-bot access token for releases.
2524
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
25+
# See also settings in these files:
26+
manifest-file: .release-please-manifest.json
27+
config-file: .release-please-config.json
2628

2729
# The jobs below are all conditional on a release having been created by
2830
# someone merging the release PR. They all run in parallel.

.release-please-config.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "node",
5+
"extra-files": [
6+
"lib/player.js"
7+
]
8+
}
9+
}
10+
}

.release-please-manifest.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"release-type": "node",
3-
"extra-files": "lib/player.js"
2+
".": "0.0.0"
43
}

0 commit comments

Comments
 (0)