Skip to content

Commit

Permalink
chore: remove v prefix from file path
Browse files Browse the repository at this point in the history
  • Loading branch information
mika-f committed Jul 17, 2023
1 parent 682ce37 commit 4baee35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Collect Artifacts
shell: powershell
run: |
$Archive = ".\bin\x64\DragAndDropSupport-v${{ needs.setup.outputs.version }}"
$Archive = ".\bin\x64\DragAndDropSupport-${{ needs.setup.outputs.version }}"
$Dest = "$Archive\drag-and-drop-support"
New-Item $Dest -Type Directory
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Packaging Artifacts
shell: powershell
run: |
$Dest = "bin/x64/DragAndDropSupport-v${{ needs.setup.outputs.version }}"
$Dest = "bin/x64/DragAndDropSupport-${{ needs.setup.outputs.version }}"
Compress-Archive "$Dest" "$Dest.zip"
Remove-Item -Recure $Dest
Expand Down

0 comments on commit 4baee35

Please sign in to comment.