We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0dcefd commit 9053d69Copy full SHA for 9053d69
1 file changed
.github/workflows/release.yml
@@ -34,10 +34,12 @@ jobs:
34
- name: Publish x64
35
run: dotnet publish src/ScreenshareHelper/ScreenshareHelper.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=true -o ../bin/x64
36
37
- - name: Create ZIP Archives
+ - name: Create ZIP Archives (Windows)
38
+ shell: pwsh
39
run: |
- tar -czvf bin/x86.zip -C bin/x86 .
40
- tar -czvf bin/x64.zip -C bin/x64 .
+ Compress-Archive -Path bin/x86/* -DestinationPath bin/x86.zip
41
+ Compress-Archive -Path bin/x64/* -DestinationPath bin/x64.zip
42
+
43
44
- name: Upload Artifacts (x86)
45
uses: actions/upload-artifact@v4
0 commit comments