blob: 9cfa4fff72eea21025be5c2cf00ed86c92488b8a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
# Add appropriate files for encryption
# https://docs.github.com/en/actions/reference/encrypted-secrets#limits-for-secrets
rm frost_github.tar.gpg
tar cvf frost_github.tar release.keystore release.properties test.keystore test.properties
gpg --symmetric --cipher-algo AES256 frost_github.tar
rm frost_github.tar
|