This commit is contained in:
Viktor Rådberg
2024-01-13 18:48:11 +01:00
parent 89b62ddac4
commit dcb98aeac6

View File

@@ -49,3 +49,12 @@ jobs:
prerelease: true
title: ${{ steps.version.outputs.version }}
files: release_note.txt
- name: Create Release
uses: ncipollo/release-action@v1.13.0
with:
artifacts: 'path/to/artifact.tar.gz,another/path/to/artifact.txt' # Add your artifact paths
body: 'Release notes for version ${{ steps.version.outputs.version }}' # Customize your release notes
commit: ${{ github.sha }} # Use the commit hash of the current workflow run
tag: '${{ steps.version.outputs.version }}' # Specify the tag for the release
token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication