mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-09 12:32:30 +01:00
9 lines
333 B
Bash
9 lines
333 B
Bash
|
#!/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
|