We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d33e6d commit 2d6ec4cCopy full SHA for 2d6ec4c
.github/workflows/automate.yml
@@ -45,7 +45,9 @@ jobs:
45
46
# Cleanup imported keys (optional, for security)
47
- name: Cleanup GPG Keys
48
- run: gpg --batch --delete-secret-keys --yes $(gpg --list-secret-keys --with-colons | grep '^sec' | cut -d':' -f5)
+ run: |
49
+ key_fingerprint=$(gpg --list-secret-keys --with-colons | grep '^sec' | cut -d':' -f5)
50
+ gpg --batch --delete-secret-keys --yes "$key_fingerprint"
51
52
# Run SVN Steps
53
- name: Perform SVN Operations
0 commit comments