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 76d621f commit 07494fdCopy full SHA for 07494fd
.github/workflows/deployment.yml
@@ -45,11 +45,17 @@ jobs:
45
- name: Build
46
run: cargo build --features self_update --release
47
48
- - name: Compress Output
+ - name: Compress Output (Linux & macOS)
49
+ if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
50
run: |
51
cd target/release
52
zip -r serial-monitor-${{ matrix.target }}.zip *
53
54
+ - name: Compress Output (Windows)
55
+ if: contains(matrix.os, 'windows')
56
+ run: |
57
+ Compress-Archive -Path target/release/* -DestinationPath serial-monitor-${{ matrix.target }}.zip
58
+
59
- name: Upload Artifact
60
uses: actions/upload-release-asset@v1.0.1
61
env:
0 commit comments