workshops icon indicating copy to clipboard operation
workshops copied to clipboard

Enable CI System (manifests, ...)

Open abenokraitis opened this issue 3 years ago • 1 comments

abenokraitis avatar Jan 25 '22 14:01 abenokraitis

Instead of base64 manifest.zip (#1424), you can try adding an encrypted manifest to the repo with the decryption password set as a secret and decode on the fly.

encrypt:
gpg --symmetric --cipher-algo AES256 manifest.zip

decrypt:
gpg --quiet --batch --yes --decrypt --passphrase="${{ secrets.GPG_PASSPHRASE }}" \
--output $HOME/secrets/manifest.zip manifest.zip.gpg

cloin avatar Jan 25 '22 15:01 cloin