chore(main): release codescythe_cli 0.10.1 (#111) #75
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: false | |
| jobs: | |
| release-please: | |
| name: Create or update release PR | |
| runs-on: ubuntu-24.04-16core | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| # Release Please owns version/changelog PRs and GitHub release notes. | |
| # CLI, npm, and crates publication happen from the release.published | |
| # workflows after Release Please creates the codescythe_cli_v* release. | |
| - name: Run Release Please | |
| id: release | |
| uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 | |
| with: | |
| token: ${{ secrets.RELEASE_TOKEN }} | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |