Skip to content

Commit

Permalink
Update create release method and add a changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout Feys committed Sep 25, 2024
1 parent bba35d0 commit 240993f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
run: cargo test --release

- name: Create Release
uses: actions/create-release@v1
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }} # The tag that triggered the workflow
release_name: Release ${{ github.ref }} # Name of the release
draft: false
prerelease: false
release_name: ${{ steps.version.outputs.version }}
tag_name: ${{ github.ref }}
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ github.token }}

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# 0.1.0
First release

0 comments on commit 240993f

Please sign in to comment.