Skip to content

Commit 9cf28cb

Browse files
committed
test(ci): Fix: rename can't be skipped
1 parent 5987cdd commit 9cf28cb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,9 @@ jobs:
147147
- name: Report coverage
148148
run: cargo afl showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_read/target/debug/fuzz_read
149149
- run: sudo apt install rename
150+
if: always()
150151
- name: Rename files
152+
if: always()
151153
run: |
152154
find . -type f -exec rename 's/:/-/g' {} \;
153155
- name: Upload updated corpus
@@ -195,7 +197,9 @@ jobs:
195197
- name: Report coverage
196198
run: cargo afl showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_read/target/debug/fuzz_read
197199
- run: sudo apt install rename
200+
if: always()
198201
- name: Rename files
202+
if: always()
199203
run: |
200204
find . -type f -exec rename 's/:/-/g' {} \;
201205
- name: Upload any failure inputs
@@ -240,7 +244,9 @@ jobs:
240244
- name: Report coverage
241245
run: cargo afl showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_write/target/debug/fuzz_write
242246
- run: sudo apt install rename
247+
if: always()
243248
- name: Rename files
249+
if: always()
244250
run: |
245251
find . -type f -exec rename 's/:/-/g' {} \;
246252
- name: Upload updated corpus
@@ -288,7 +294,9 @@ jobs:
288294
- name: Report coverage
289295
run: cargo afl showmap -C -i out -o map -- ${{ github.workspace }}/fuzz_write/target/debug/fuzz_write
290296
- run: sudo apt install rename
297+
if: always()
291298
- name: Rename files
299+
if: always()
292300
run: |
293301
find . -type f -exec rename 's/:/-/g' {} \;
294302
- name: Upload any failure inputs

0 commit comments

Comments
 (0)