Skip to content

Commit bc9165f

Browse files
committed
Testing new workflow
1 parent 328c0ef commit bc9165f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/configlet-sync.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,11 @@ jobs:
5454
continue-on-error: true
5555
run: |
5656
output_file=/tmp/configlet_output.txt
57-
./bin/configlet sync --tests > "$output_file" 2>&1 || true
57+
58+
set +e
59+
./bin/configlet sync --tests > "$output_file" 2>&1
5860
exit_code=$?
61+
set -e
5962
6063
configlet_raw_output="$(cat "$output_file")"
6164

0 commit comments

Comments
 (0)