diff --git a/.github/workflows/release-main.yml b/.github/workflows/release-main.yml index 6977ce1..5d202d0 100644 --- a/.github/workflows/release-main.yml +++ b/.github/workflows/release-main.yml @@ -7,26 +7,8 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: GoogleCloudPlatform/release-please-action@v3.7 + - uses: GoogleCloudPlatform/release-please-action@v4.1 id: release - with: - release-type: node - package-name: "@kiwigrid/antora-maven-content" - changelog-types: | - [ - {"type":"feat","section":"๐ŸŽ Features"}, - {"type":"fix","section":"๐Ÿ› Bug Fixes"}, - {"type":"perf","section":"๐Ÿš€ Performance Improvements"}, - {"type":"deps","section":"๐Ÿ“ฆ Dependencies"}, - {"type":"revert","section":"Reverts"}, - {"type":"docs","section":"๐Ÿ“– Documentation"}, - {"type":"style","section":"Styles","hidden":true}, - {"type":"chore","section":"๐Ÿงน Miscellaneous Chores","hidden":false}, - {"type":"refactor","section":"Code Refactoring","hidden":true}, - {"type":"test","section":"Tests","hidden":true}, - {"type":"build","section":"๐Ÿ—๏ธ Build System","hidden":true}, - {"type":"ci","section":"Continuous Integration","hidden":true} - ] # The logic below handles the npm publication: - uses: actions/checkout@v4 # these if statements ensure that a publication only occurs when diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..bf6b571 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "1.5.4" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..715c847 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,22 @@ +{ + "release-type": "node", + "packages": { + ".": { + } + }, + "changelog-sections": [ + {"type":"feat","section":"๐ŸŽ Features"}, + {"type":"fix","section":"๐Ÿ› Bug Fixes"}, + {"type":"perf","section":"๐Ÿš€ Performance Improvements"}, + {"type":"deps","section":"๐Ÿ“ฆ Dependencies"}, + {"type":"revert","section":"Reverts"}, + {"type":"docs","section":"๐Ÿ“– Documentation"}, + {"type":"style","section":"Styles","hidden":true}, + {"type":"chore","section":"๐Ÿงน Miscellaneous Chores","hidden":false}, + {"type":"refactor","section":"Code Refactoring","hidden":true}, + {"type":"test","section":"Tests","hidden":true}, + {"type":"build","section":"๐Ÿ—๏ธ Build System","hidden":true}, + {"type":"ci","section":"Continuous Integration","hidden":true} + ], + "include-component-in-tag": false +}