Skip to content

Commit

Permalink
fix: update release please configuration (#39)
Browse files Browse the repository at this point in the history
Due to the major change, seems release please no longer accepts all of
the options via the action. Moves that configuration to the config file.
  • Loading branch information
btkostner authored Feb 20, 2024
1 parent c38f194 commit 25975e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,9 @@ jobs:
name: Release
uses: google-github-actions/release-please-action@v4
with:
release-type: node
package-name: actions-elixir
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
extra-files: |
docker-build/README.md
setup/README.md
README.md
config-file: release-please-config.json
manifest-file: .release-please-manifest.json

- if: ${{ steps.release.outputs.release_created }}
name: Checkout
Expand Down
9 changes: 8 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
"separate-pull-requests": false,
"draft-pull-request": true,
"packages": {
".": {}
".": {
"release-type": "simple",
"extra-files": [
"docker-build/README.md",
"setup/README.md",
"README.md"
]
}
}
}

0 comments on commit 25975e5

Please sign in to comment.