Merge pull request #58 from DataGomes/feat/frontend-redesign #2
This file contains hidden or 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 | |
| # Watches main and opens (or updates) a "Release PR" whenever there are | |
| # unreleased commits with conventional-commit prefixes (feat:, fix:, etc.). | |
| # Merging that Release PR creates a vX.Y.Z tag, which the existing | |
| # publish.yml workflow consumes to build and upload to PyPI. | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |