actions take 55

This commit is contained in:
Jay Lee
2020-12-04 08:59:51 -05:00
parent 939840b702
commit 28c5d277a0
3 changed files with 48 additions and 10 deletions

BIN
.github/actions/creds.tar.gpg vendored Normal file

Binary file not shown.

9
.github/actions/decrypt.sh vendored Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
credsfile="${gampath}/creds.tar"
gpg --quiet --batch --yes --decrypt --passphrase="${PASSPHRASE}" \
--output "${credsfile}" "${mydir}/creds.tar.gpg"
tar xf "${credsfile}" --directory "${gampath}"