Skip to content

Commit 1224566

Browse files
committed
ci: attempt to add artifact uploads
1 parent 153456a commit 1224566

1 file changed

Lines changed: 31 additions & 6 deletions

File tree

.github/workflows/rust.yml

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,36 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
1413

15-
runs-on: ubuntu-latest
14+
linux:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Build
19+
run: cargo build --verbose
1620

17-
steps:
18-
- uses: actions/checkout@v4
19-
- name: Build
20-
run: cargo build --verbose
21+
- uses: actions/upload-artifact@v4
22+
with:
23+
path: target/release/nestdbg
24+
25+
windows:
26+
runs-on: windows-latest
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Build
30+
run: cargo build --verbose
31+
32+
- uses: actions/upload-artifact@v4
33+
with:
34+
path: target/release/nestdbg.exe
35+
36+
macOS:
37+
runs-on: macos-latest
38+
steps:
39+
- uses: actions/checkout@v4
40+
- name: Build
41+
run: cargo build --verbose
42+
43+
- uses: actions/upload-artifact@v4
44+
with:
45+
path: target/release/nestdbg

0 commit comments

Comments
 (0)