Skip to content

Commit ece7745

Browse files
author
Vignesh Kennadi
committed
adds condition to check if directory exists
1 parent 8eb904e commit ece7745

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build-lint-test.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ jobs:
2323

2424
- name: Configure GPG
2525
run: |
26-
mkdir -p ~/.gnupg
27-
chmod 700 ~/.gnupg
28-
echo "use-agent" > ~/.gnupg/gpg.conf
29-
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
30-
26+
if [ ! -d "~/.gnupg" ]; then
27+
mkdir -p ~/.gnupg
28+
chmod 700 ~/.gnupg
29+
echo "use-agent" > ~/.gnupg/gpg.conf
30+
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
31+
else
32+
echo "~/.gnupg directory already exists."
33+
fi
3134
- name: Import GPG Key
3235
run: |
3336
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import

0 commit comments

Comments
 (0)