Skip to content

Commit 1b83ac3

Browse files
committed
fix?
1 parent ccc7b53 commit 1b83ac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ jobs:
126126
- name: Build rewatch
127127
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
128128
run: |
129-
cargo build --manifest-path rewatch/Cargo.toml --release
130-
# build specific target
131129
cargo build --manifest-path rewatch/Cargo.toml --target ${{ matrix.rust-target }} --release
132130
133131
- name: Run rewatch unit tests
@@ -138,6 +136,8 @@ jobs:
138136
- name: Copy rewatch binary
139137
run: |
140138
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
141141
./scripts/copyExes.js --rewatch
142142
shell: bash
143143

0 commit comments

Comments
 (0)