Skip to content

Commit

Permalink
👷 Format of release changed
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Feb 25, 2024
1 parent 9e0c6b9 commit 00ca0a0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,17 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@main

- name: Get last commit message
id: last-commit
run: echo "message=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT

- name: Upload to Release
uses: svenstaro/upload-release-action@master
with:
body: ${{ needs.prepare.outputs.VERSION }}
body: ${{ steps.last-commit.outputs.message }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./VNULIB-Downloader-*/VNULIB-Downloader-*
release_name: VNULIB Downloader ${{ needs.prepare.outputs.VERSION }}
release_name: ${{ needs.prepare.outputs.VERSION }}
tag: ${{ needs.prepare.outputs.VERSION }}
file_glob: true
overwrite: false
Expand Down

0 comments on commit 00ca0a0

Please sign in to comment.