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 f9d3dbf commit f54d863Copy full SHA for f54d863
.github/workflows/code_test_and_deploy.yml
@@ -100,8 +100,10 @@ jobs:
100
- name: Install pass on Linux
101
if: runner.os == 'Linux'
102
run: |
103
- sudo apt-get update
104
- sudo apt-get install -y pass
+ sudo apt-get update && sudo apt-get install -y pass gnupg
+ export GNUPGHOME=$(mktemp -d)
105
+ gpg --batch --passphrase '' --quick-gen-key "CI Key" default default never
106
+ pass init "CI Key"
107
108
- name: RClone Encryption
109
0 commit comments