mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
12 lines
361 B
YAML
12 lines
361 B
YAML
name: macOS keychain cleanup
|
|
description: Delete the temporary keychain created by macos-keychain-setup.
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Cleanup keychain
|
|
shell: bash
|
|
run: |
|
|
if [[ -n "${APPLE_KEYCHAIN_PATH:-}" && -f "${APPLE_KEYCHAIN_PATH}" ]]; then
|
|
security delete-keychain "$APPLE_KEYCHAIN_PATH" || true
|
|
fi
|