Skip to content

Commit

Permalink
chore: migrate to release-please-action v4 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
yshrsmz authored Sep 1, 2024
1 parent 435519d commit edadbfa
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,8 @@ jobs:
release_created: ${{ steps.release.outputs.release_created }}

steps:
- uses: google-github-actions/release-please-action@v3.7.13
- uses: googleapis/release-please-action@v4
id: release
with:
changelog-types: |
[
{"type":"build","section":"Build System","hidden":false},
{"type":"chore","section":"Miscellaneous","hidden":false},
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"perf","section":"Performance Improvements","hidden":false},
{"type":"refactor","section":"Refactoring","hidden":false},
{"type":"revert","section":"Reverts","hidden":false}
]
release-type: simple
extra-files: |
gradle.properties
token: ${{ secrets.WORKFLOW_TOKEN }}
43 changes: 43 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"release-type": "simple",
"changelog-types": [
{
"type": "build",
"section": "Build System",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": false
},
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements",
"hidden": false
},
{
"type": "refactor",
"section": "Refactoring",
"hidden": false
},
{
"type": "revert",
"section": "Reverts",
"hidden": false
}
],
"extra-files": [
"gradle.properties"
]
}

0 comments on commit edadbfa

Please sign in to comment.