Skip to content

Commit

Permalink
build: use GITHUB_TOKEN instead of custom token
Browse files Browse the repository at this point in the history
  • Loading branch information
davidacevedo committed Feb 17, 2023
1 parent 6e49fb1 commit 9150966
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
- uses: GoogleCloudPlatform/release-please-action@v3
id: release-please
with:
token: ${{ secrets.REACTSTRAP_TOKEN }}
release-type: node
package-name: "reactstrap"
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":true},{"type":"refactor","section":"Miscellaneous","hidden":false}]'
Expand All @@ -22,7 +21,6 @@ jobs:
- uses: GoogleCloudPlatform/release-please-action@v3
id: release
with:
token: ${{ secrets.REACTSTRAP_TOKEN }}
release-type: node
package-name: "reactstrap"
command: github-release
Expand All @@ -43,6 +41,6 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
- name: Publish Docs
env:
GITHUB_TOKEN: ${{ secrets.REACTSTRAP_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./scripts/docs
if: ${{ steps.release.outputs.release_created }}

0 comments on commit 9150966

Please sign in to comment.