ci: drive release-please from a manifest config on action v5 (#10494)

* ci: drive release-please from a manifest config on action v5

* ci: trim the release-please config comment
This commit is contained in:
Ruben Fiszel
2026-08-04 07:05:32 +00:00
committed by GitHub
parent 4c4d6c98bf
commit c434703ee7
3 changed files with 18 additions and 3 deletions
+5 -3
View File
@@ -8,8 +8,10 @@ jobs:
name: "Release please"
runs-on: ubicloud
steps:
- uses: GoogleCloudPlatform/release-please-action@v3
# Config lives in release-please-config.json / .release-please-manifest.json:
# a `release-type` input instead re-derives the last released version by
# paginating every GitHub release, which on a repo this size is slow enough
# to fail intermittently.
- uses: googleapis/release-please-action@v5
with:
release-type: simple
package-name: windmill
token: ${{ secrets.PAT_TOKEN }}
+3
View File
@@ -0,0 +1,3 @@
{
".": "1.778.0"
}
+10
View File
@@ -0,0 +1,10 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"package-name": "windmill",
"include-component-in-tag": false
}
}
}