From c16dd4444e54af8c8747d007da6eabcdc082a381 Mon Sep 17 00:00:00 2001 From: kokofixcomputers Date: Sat, 30 Nov 2024 15:14:27 -0800 Subject: [PATCH] :green_heart: ci: Fix not releasing Signed-off-by: kokodev --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2af8e11..08541aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -149,12 +149,12 @@ jobs: - name: List downloaded files before release upload run: ls -al - - name: Create Release + - name: Create Pre-Release Assets using softprops/action-gh-release uses: softprops/action-gh-release@v1 with: - tag_name: "${{ github.ref }}" # Use the tag that triggered the workflow - title: "${{ github.ref }}" # Title for the release + tag_name: "${{ github.event.inputs.release_version }}" # Use input for tag_name. + name: "${{ github.event.inputs.release_version }}" body: ${{ steps.build_changelog.outputs.changelog }} # Use the generated changelog as release notes - files: commitify-linux, commitify.exe, commitify-darwin, commitify.py # List of files to include in the release + files: commitify-linux, commitify.exe, commitify-darwin, commitify.py env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the GitHub token for authentication \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the GitHub token for authentication