Skip to content

Commit

Permalink
fix: release workflow release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
clragon committed Jan 6, 2024
1 parent c1749a7 commit 5dd79c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
- name: Get version changelog
run: |
echo "CHANGELOG=$(cider describe ${{ env.VERSION }} --only-body)" >> $GITHUB_ENV
echo "$(cider describe ${{ env.VERSION }} --only-body)" > changes
- name: Create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
body: ${{ env.CHANGELOG }}
body_path: changes

0 comments on commit 5dd79c8

Please sign in to comment.