From c508cde8d53a0c4cfd4f4bedb53a2986abf3cfe4 Mon Sep 17 00:00:00 2001 From: SpontanCombust <61706594+SpontanCombust@users.noreply.github.com> Date: Sun, 7 Jul 2024 14:03:42 +0200 Subject: [PATCH] release workflow: change zip name --- .github/workflows/draft-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index a4e2844..ab80be3 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -24,15 +24,15 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --release --target=x86_64-pc-windows-msvc + args: --package rw3d_cli --release --target=x86_64-pc-windows-msvc - name: Zip the executable uses: papeloto/action-zip@v1 with: files: "target/x86_64-pc-windows-msvc/release/rw3d_cli.exe" - dest: "Rusty Witcher 3 Debugger CLI.zip" + dest: "rw3d_cli_${{ github.ref_name }}.zip" - name: Create draft release uses: ncipollo/release-action@v1 with: - artifacts: "Rusty Witcher 3 Debugger CLI.zip" + artifacts: "rw3d_cli_${{ github.ref_name }}.zip" draft: true generateReleaseNotes: true