This Step decrypts a file encrypted with gpg, using the default AES128 symmetric cypher.
The Step decrypts a file encrypted with gpg. This can be helpful if you would like to store an encrypted file in your repository, like a google-services.json file used to authenticate your project. Using this Step, you can decrypt that file and use it in your Workflow.
To create an encrypted file with gpg:
pwgen -s 32 1my_secret.txt: gpg -c my_secret.txtFor more information, check out our guide on Using encrypted files in your builds.