Skip to content

Commit f54d863

Browse files
committed
Initialise pass on linux.
1 parent f9d3dbf commit f54d863

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/code_test_and_deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ jobs:
100100
- name: Install pass on Linux
101101
if: runner.os == 'Linux'
102102
run: |
103-
sudo apt-get update
104-
sudo apt-get install -y pass
103+
sudo apt-get update && sudo apt-get install -y pass gnupg
104+
export GNUPGHOME=$(mktemp -d)
105+
gpg --batch --passphrase '' --quick-gen-key "CI Key" default default never
106+
pass init "CI Key"
105107
106108
- name: RClone Encryption
107109
run: |

0 commit comments

Comments
 (0)