Skip to content

Commit

Permalink
fix: corrige o releaser para que o bot padrão do github apareça como …
Browse files Browse the repository at this point in the history
…autor das releases
  • Loading branch information
RafaelGondi committed Jan 20, 2025
1 parent e9ce1bf commit 55448e1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
uses: Klemensas/action-autotag@stable
id: auto-tag
with:
GITHUB_TOKEN: "${{ secrets.RELEASE_SECRET }}"
tag_prefix: "v"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Usando o token padrão

- name: Read package.json
uses: tyankatsu0105/read-package-version-actions@v1
Expand All @@ -44,13 +43,12 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_SECRET }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Usando o token padrão
with:
tag_name: ${{ steps.auto-tag.outputs.tagname }}
release_name: "v${{ steps.package-version.outputs.version }}"
body: |
## Mudanças nessa release:
${{ env.CHANGELOG }}
draft: false
prerelease: false

0 comments on commit 55448e1

Please sign in to comment.