Skip to content

Commit 3bc78cc

Browse files
Fix missing dir in workflow
1 parent 16a31db commit 3bc78cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ jobs:
193193
if: ${{ github.event.inputs.create_github_release }}
194194
shell: powershell
195195
working-directory: Build
196-
run: Compress-Archive -Path .\bin\FIDO2UI\release\* -DestinationPath .\publish\FIDO2UI.zip -CompressionLevel Optimal -Force
196+
run: |
197+
New-Item -ItemType Directory -Path .\publish -Force
198+
Compress-Archive -Path .\bin\FIDO2UI\release\* -DestinationPath .\publish\FIDO2UI.zip -CompressionLevel Optimal -Force
197199
198200
- name: Create Module ZIP for GitHub Release
199201
if: ${{ github.event.inputs.create_github_release }}

0 commit comments

Comments
 (0)