Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Commit 3b82239

Browse files
author
Ethan Budd
authored
Update ci.yml
testing call cargo directly
1 parent 86b9b7e commit 3b82239

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ jobs:
8080
- uses: actions/checkout@v2
8181
- uses: actions-rs/toolchain@v1
8282
with:
83-
profile: default
83+
profile: minimal
8484
toolchain: stable
8585
override: true
86-
- uses: actions-rs/cargo@v1
87-
with:
88-
command: build --release
86+
- name: Build Bin
87+
run: cargo build --release --all-features
8988
- uses: actions/upload-artifact@v2
9089
with:
9190
name: binary-latest
@@ -99,12 +98,11 @@ jobs:
9998
- uses: actions/checkout@v2
10099
- uses: actions-rs/toolchain@v1
101100
with:
102-
profile: default
101+
profile: minimal
103102
toolchain: stable
104103
override: true
105-
- uses: actions-rs/cargo@v1
106-
with:
107-
command: install cargo-deb
104+
- name: Install cargo-deb
105+
run: cargo install cargo-deb
108106
- name: Build package
109107
run: cargo-deb
110108
- uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)