Skip to content

Commit 7086a9c

Browse files
committed
Workflows adjusted for artifact upload.
1 parent 9bc4ab8 commit 7086a9c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main.yml

+20
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
run: cargo build --release --verbose
1717
- name: Run tests
1818
run: cargo test --verbose
19+
- uses: actions/upload-artifact@v3
20+
with:
21+
name: deoptimizer-linux-x86_64
22+
path: ./target/release/deoptimizer
23+
retention-days: 5
1924
build-windows:
2025
runs-on: windows-latest
2126
steps:
@@ -24,6 +29,11 @@ jobs:
2429
run: cargo build --release --verbose
2530
- name: Run tests
2631
run: cargo test --verbose
32+
- uses: actions/upload-artifact@v3
33+
with:
34+
name: deoptimizer-windows-x86_64
35+
path: ./target/release/deoptimizer
36+
retention-days: 5
2737
build-macos-x86:
2838
runs-on: macos-13
2939
steps:
@@ -32,6 +42,11 @@ jobs:
3242
run: cargo build --release --verbose
3343
- name: Run tests
3444
run: cargo test --verbose
45+
- uses: actions/upload-artifact@v3
46+
with:
47+
name: deoptimizer-macos-x86_64
48+
path: ./target/release/deoptimizer
49+
retention-days: 5
3550
build-macos-arm64:
3651
runs-on: macos-14
3752
steps:
@@ -40,3 +55,8 @@ jobs:
4055
run: cargo build --release --verbose
4156
- name: Run tests
4257
run: cargo test --verbose
58+
- uses: actions/upload-artifact@v3
59+
with:
60+
name: deoptimizer-macos-aarch64
61+
path: ./target/release/deoptimizer
62+
retention-days: 5

0 commit comments

Comments
 (0)