Skip to content

Commit 713856d

Browse files
committed
use a release folder for the archives build
1 parent 84edecb commit 713856d

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/win_build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,20 @@ jobs:
4949
run: |
5050
Move-Item .\dist\cmdCompass\_internal\data .\dist\data
5151
Move-Item .\dist\cmdCompass\_internal\static .\dist\static
52+
New-Item -ItemType Directory -Force -Path .\release
5253
5354
- name: Create zip Archive
5455
run: |
55-
Compress-Archive -Path .\dist\* -DestinationPath .\dist\cmdCompass.zip
56+
Compress-Archive -Path .\dist\* -DestinationPath .\release\cmdCompass.zip
5657
5758
- name: Create 7z Archive
5859
run: |
59-
7z a .\dist\cmdCompass.7z .\dist\*
60+
7z a .\release\cmdCompass.7z .\dist\*
6061
6162
- name: Upload Artifacts
6263
uses: actions/upload-artifact@v3
6364
with:
6465
name: cmdCompass-artifacts
6566
path: |
66-
.\dist\cmdCompass.zip
67-
.\dist\cmdCompass.7z
67+
.\release\cmdCompass.zip
68+
.\release\cmdCompass.7z

0 commit comments

Comments
 (0)