Still finish checklist if a step failed

The point is to get as far as we can.
This commit is contained in:
Asher
2026-05-28 11:03:48 -08:00
parent 4a50b99b67
commit 030bdcf771
2 changed files with 4 additions and 2 deletions

View File

@@ -37,7 +37,8 @@ function main() {
"Update changelog" "update_changelog" "Update changelog" "update_changelog"
) )
run-steps "${steps[@]}" # Even if a step failed, still output the last checkmark.
run-steps "${steps[@]}" || true
# This step is always manual. # This step is always manual.
echo "- [ ] https://github.com/coder/code-server-aur/pulls" >> .cache/checklist echo "- [ ] https://github.com/coder/code-server-aur/pulls" >> .cache/checklist

View File

@@ -146,7 +146,8 @@ function main() {
"Add changelog note" "add_changelog" "Add changelog note" "add_changelog"
) )
run-steps "${steps[@]}" # Even if a step failed, still output the last checkmark.
run-steps "${steps[@]}" || true
# This step is always manual. # This step is always manual.
echo "- [ ] Verify changelog" >> .cache/checklist echo "- [ ] Verify changelog" >> .cache/checklist