File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,15 @@ jobs:
102
102
- uses : actions-rs/cargo@v1
103
103
with :
104
104
command : build
105
- args : --release --bin espflash --target x86_64-unknown-linux-musl
105
+ args : --release --all --target x86_64-unknown-linux-musl
106
106
- uses : actions/upload-artifact@v2
107
107
with :
108
108
name : espflash
109
109
path : target/x86_64-unknown-linux-musl/release/espflash
110
+ - uses : actions/upload-artifact@v2
111
+ with :
112
+ name : cargo-espflash
113
+ path : target/x86_64-unknown-linux-musl/release/cargo-espflash
110
114
111
115
build-windows :
112
116
name : Build Static Windows Binaries
@@ -123,8 +127,12 @@ jobs:
123
127
with :
124
128
use-cross : true
125
129
command : build
126
- args : --release --bin espflash --target x86_64-pc-windows-gnu
130
+ args : --release --all --target x86_64-pc-windows-gnu
127
131
- uses : actions/upload-artifact@v2
128
132
with :
129
133
name : espflash.exe
130
- path : target/x86_64-pc-windows-gnu/release/espflash.exe
134
+ path : target/x86_64-pc-windows-gnu/release/espflash.exe
135
+ - uses : actions/upload-artifact@v2
136
+ with :
137
+ name : cargo-espflash.exe
138
+ path : target/x86_64-pc-windows-gnu/release/cargo-espflash.exe
You can’t perform that action at this time.
0 commit comments