We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2cc5c commit 86cf293Copy full SHA for 86cf293
1 file changed
.github/workflows/build.yml
@@ -37,13 +37,20 @@ jobs:
37
- name: Install Packages
38
run: nimble install -d -y
39
40
- - name: Build test
+ - name: Build Webfisher
41
run: nimble build -Y
42
43
- - name: Upload builds
+ - name: Upload Linux artifact
44
+ if: ${{ runner.os }} == 'Linux'
45
uses: actions/upload-artifact@v4
- name: build-artifacts-${{ matrix.os }}
46
- with: |
47
- webfisher
48
- webfisher.exe
+ with:
+ name: webisher-linux
+ path: webfisher
49
+
50
+ - name: Upload Windows artifact
51
+ if: ${{ runner.os }} == 'Windows'
52
+ uses: actions/upload-artifact@v4
53
54
+ name: webfisher-windows
55
+ path: webfisher.exe
56
0 commit comments