We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a31db commit 3bc78ccCopy full SHA for 3bc78cc
.github/workflows/release.yml
@@ -193,7 +193,9 @@ jobs:
193
if: ${{ github.event.inputs.create_github_release }}
194
shell: powershell
195
working-directory: Build
196
- run: Compress-Archive -Path .\bin\FIDO2UI\release\* -DestinationPath .\publish\FIDO2UI.zip -CompressionLevel Optimal -Force
+ run: |
197
+ New-Item -ItemType Directory -Path .\publish -Force
198
+ Compress-Archive -Path .\bin\FIDO2UI\release\* -DestinationPath .\publish\FIDO2UI.zip -CompressionLevel Optimal -Force
199
200
- name: Create Module ZIP for GitHub Release
201
0 commit comments