Skip to content

Commit

Permalink
release workflow: change zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
SpontanCombust committed Jul 7, 2024
1 parent 8561863 commit c508cde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c508cde

Please sign in to comment.