Skip to content

Commit 86cf293

Browse files
committed
fix: workflow again
1 parent ad2cc5c commit 86cf293

1 file changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,20 @@ jobs:
3737
- name: Install Packages
3838
run: nimble install -d -y
3939

40-
- name: Build test
40+
- name: Build Webfisher
4141
run: nimble build -Y
4242

43-
- name: Upload builds
43+
- name: Upload Linux artifact
44+
if: ${{ runner.os }} == 'Linux'
4445
uses: actions/upload-artifact@v4
45-
name: build-artifacts-${{ matrix.os }}
46-
with: |
47-
webfisher
48-
webfisher.exe
46+
with:
47+
name: webisher-linux
48+
path: webfisher
49+
50+
- name: Upload Windows artifact
51+
if: ${{ runner.os }} == 'Windows'
52+
uses: actions/upload-artifact@v4
53+
with:
54+
name: webfisher-windows
55+
path: webfisher.exe
4956

0 commit comments

Comments
 (0)