Skip to content

Commit 030bdcf

Browse files
committed
Still finish checklist if a step failed
The point is to get as far as we can.
1 parent 4a50b99 commit 030bdcf

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

ci/build/update-repo.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ function main() {
3737
"Update changelog" "update_changelog"
3838
)
3939

40-
run-steps "${steps[@]}"
40+
# Even if a step failed, still output the last checkmark.
41+
run-steps "${steps[@]}" || true
4142

4243
# This step is always manual.
4344
echo "- [ ] https://github.com/coder/code-server-aur/pulls" >> .cache/checklist

ci/build/update-vscode.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ function main() {
146146
"Add changelog note" "add_changelog"
147147
)
148148

149-
run-steps "${steps[@]}"
149+
# Even if a step failed, still output the last checkmark.
150+
run-steps "${steps[@]}" || true
150151

151152
# This step is always manual.
152153
echo "- [ ] Verify changelog" >> .cache/checklist

0 commit comments

Comments
 (0)