File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,6 @@ jobs:
126
126
- name : Build rewatch
127
127
if : steps.rewatch-build-cache.outputs.cache-hit != 'true'
128
128
run : |
129
- cargo build --manifest-path rewatch/Cargo.toml --release
130
- # build specific target
131
129
cargo build --manifest-path rewatch/Cargo.toml --target ${{ matrix.rust-target }} --release
132
130
133
131
- name : Run rewatch unit tests
@@ -138,6 +136,8 @@ jobs:
138
136
- name : Copy rewatch binary
139
137
run : |
140
138
cp rewatch/target/${{ matrix.rust-target }}/release/rewatch${{ runner.os == 'Windows' && '.exe' || '' }} rewatch
139
+ mkdir -p rewatch/target/release
140
+ cp rewatch/target/${{ matrix.rust-target }}/release/rewatch${{ runner.os == 'Windows' && '.exe' || '' }} rewatch/target/release
141
141
./scripts/copyExes.js --rewatch
142
142
shell : bash
143
143
You can’t perform that action at this time.
0 commit comments