Skip to content

deps(release-please): update job #64

deps(release-please): update job

deps(release-please): update job #64

# https://github.com/googleapis/release-please-action
# https://www.padok.fr/en/blog/release-please
name: release-please
# it will create or update a pull request with changes on each push on master branch
on:
push:
branches:
- main
- master
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
# this assumes that you have created a personal access token
# (PAT) and configured it as a GitHub action secret named
# `RELEASE_PLEASE` (this secret name is not important).
token: ${{ secrets.RELEASE_PLEASE }}
# this is a built-in strategy in release-please, see "Action Inputs"
# for more options
# optional. customize path to release-please-config.json
config-file: release-please-config.json
# optional. customize path to .release-please-manifest.json
manifest-file: .release-please-manifest.json
# package-name: ${{env.ACTION_NAME}}
- name: Print release outputs for debugging
run: |
echo "Release outputs:"
echo "${{ toJson(steps.release.outputs) }}"