Skip to content

Commit

Permalink
chore: Update github action to create new releases
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrenskers committed Dec 4, 2024
1 parent 94f39ed commit a1bd7f0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@latest

- name: Create changelog text
id: changelog
Expand All @@ -21,10 +21,9 @@ jobs:
exclude_types: other,doc,chore,build

- name: Create release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a1bd7f0

Please sign in to comment.