File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,19 @@ jobs:
8888 - name : Build release
8989 run : cargo build --release --verbose
9090
91- - name : Upload artifacts
91+ - name : Upload artifacts (Windows)
92+ if : matrix.os == 'windows-latest'
9293 uses : actions/upload-artifact@v4
9394 with :
9495 name : ${{ matrix.os }}-binary
95- path : target/release/sshdb${{ matrix.os == 'windows-latest' && '.exe' || '' }}
96+ path : target/release/sshdb.exe
97+ retention-days : 1
98+
99+ - name : Upload artifacts (Unix)
100+ if : matrix.os != 'windows-latest'
101+ uses : actions/upload-artifact@v4
102+ with :
103+ name : ${{ matrix.os }}-binary
104+ path : target/release/sshdb
96105 retention-days : 1
97106
Original file line number Diff line number Diff line change 11[package ]
22name = " sshdb"
33version = " 0.15.0"
4- edition = " 2024 "
4+ edition = " 2021 "
55description = " Keyboard-first SSH library and launcher TUI."
66authors = [
" Riccardo Iaconelli <[email protected] >" ]
77license = " GPL-3.0-or-later"
You can’t perform that action at this time.
0 commit comments