mirror of
https://github.com/r-freeman/workflow-with-secrets.git
synced 2024-11-11 11:55:41 +00:00
Ryan Freeman
a2c77e4eac
All checks were successful
Decrypt Secrets / DecryptSecrets (push) Successful in 3s
7 lines
195 B
Bash
Executable File
7 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# --batch to prevent interactive command
|
|
# --yes to assume "yes" for questions
|
|
gpg --quiet --batch --yes --decrypt --passphrase="$SECRET_PASSPHRASE" \
|
|
--output ./secrets ./secrets.gpg
|