chore(deps): update all cloudnative-pg daggerverse dependencies to 93… #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release-please | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
# TODO: googleapis/release-please-action cannot sign commits yet. | |
# We'll use the cli until there's a fix for | |
# https://github.com/googleapis/release-please/issues/2280. | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# TODO: remove bump-minor-pre-major when in production. It prevents | |
# release-please from bumping the major version on breaking changes. | |
# TODO: remove release-as after first release. Used to set the first | |
# release version, which would default to 1.0.0. Set the version | |
# manually also for 1.0.0. | |
- run: | | |
npx release-please release-pr \ | |
--token="${{ secrets.REPO_PAT }}" \ | |
--repo-url="${{ github.repository }}" \ | |
--bump-minor-pre-major=true \ | |
--release-as=0.1.0 \ | |
--signoff "Peggie <info@cloudnative-pg.io>"; | |
npx release-please github-release \ | |
--token="${{ secrets.REPO_PAT }}" \ | |
--repo-url="${{ github.repository }}" \ |