Merge pull request #13 from vlnevyhosteny/master #4
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
# This workflow opens and updates a pull request with a new package version | |
# based on code changes. | |
# The pull request updates the version in pubspec.yaml, updates the changelog and creates release tags. | |
# For more information, see https://github.com/marketplace/actions/release-please-action | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: google-github-actions/[email protected] | |
with: | |
release-type: dart | |
package-name: release-please-action | |
pull-request-title-pattern: 'chore(release): ${version}' | |
pull-request-header: ':robot: Merge this PR to release a new version' | |
token: ${{ secrets.DEPLOY_TOKEN }} | |
extra-files: | | |
README.md |