Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias authored Aug 27, 2024
1 parent 7f1e557 commit dc9ae5d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,31 @@ jobs:
- name: package
run: |
cargo build --release
- name: upload binary
if: ${{ !startsWith(matrix.runner, 'windows') }}
uses: actions/upload-artifact@v4
with:
name: recnfs_desktop_daemon_${{ matrix.runner }}
path: target/release/recnfs_desktop_daemon

- name: upload binary
if: startsWith(matrix.runner, 'windows')
uses: actions/upload-artifact@v4
with:
name: recnfs_desktop_daemon_${{ matrix.runner }}
path: target/release/recnfs_desktop_daemon.exe

- name: upload binary
if: ${{ !startsWith(matrix.runner, 'windows') }}
uses: actions/upload-artifact@v4
with:
name: recnfs_desktop_gui_${{ matrix.runner }}
path: target/release/recnfs_desktop_gui

- name: upload binary
if: startsWith(matrix.runner, 'windows')
uses: actions/upload-artifact@v4
with:
name: recnfs_desktop_gui_${{ matrix.runner }}
path: target/release/recnfs_desktop_gui.exe

0 comments on commit dc9ae5d

Please sign in to comment.