chore: replace release-please app with GitHub action

Replaces the .github/release-please.yml app configuration with a
release-please-action workflow.

The new workflow in .github/workflows/release-please.yml is equivalent to the old app configuration. It uses a manifest-based release strategy, which is the default for the action when no `release-type` is specified.

Removes comments from the workflow file.
This commit is contained in:
google-labs-jules[bot] 2025-08-01 00:11:13 +00:00
parent 8808a25da8
commit 964f6f33cc
2 changed files with 18 additions and 2 deletions

View File

@ -1,2 +0,0 @@
handleGHRelease: true
manifest: true

18
.github/workflows/release-please.yml vendored Normal file
View File

@ -0,0 +1,18 @@
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}