diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1809d1..38b4a42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,10 +144,9 @@ jobs: app-id: ${{ secrets.RELEASE_APP_ID }} private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 id: release with: - release-type: python token: ${{ steps.app-token.outputs.token }} docker-main-gpu: diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..bcd0522 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.6.0" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..8a32359 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,24 @@ +{ + "packages": { + ".": { + "release-type": "python", + "changelog-sections": [ + {"type": "feat", "section": "Features"}, + {"type": "fix", "section": "Bug Fixes"}, + {"type": "refactor", "section": "Code Refactoring"}, + {"type": "perf", "section": "Performance Improvements"}, + {"type": "docs", "section": "Documentation", "hidden": false}, + {"type": "test", "section": "Tests", "hidden": true}, + {"type": "build", "section": "Build System", "hidden": true}, + {"type": "ci", "section": "Continuous Integration", "hidden": true}, + {"type": "chore", "section": "Miscellaneous", "hidden": true} + ], + "extra-files": [ + "src/__init__.py" + ] + } + }, + "bootstrap-sha": "040347b5859ccc7ed230c398721e16d651fae887", + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true +}