ci: clear out debug, remove keys when finished

This commit is contained in:
Aaron Bieber 2023-02-02 14:49:47 -07:00
parent 9782963437
commit d4b721292b
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

3
ci
View File

@ -4,8 +4,6 @@
CMD=${1:-""}
set -x
start_ci
trap ci_error INT TERM
@ -35,3 +33,4 @@ else
nix flake check || handle_check_fail
fi
finish

View File

@ -79,6 +79,7 @@ start_ci() {
finish() {
ssh-add -d /run/secrets/manager_key
ssh-add -d /run/secrets/ci_ed25519_key
exit 0
}