diff --git a/.github/actions/creds.tar.xz.gpg b/.github/actions/creds.tar.xz.gpg index d6a7c657..83404bce 100644 Binary files a/.github/actions/creds.tar.xz.gpg and b/.github/actions/creds.tar.xz.gpg differ diff --git a/.github/actions/decrypt.sh b/.github/actions/decrypt.sh index da755898..52db58b1 100644 --- a/.github/actions/decrypt.sh +++ b/.github/actions/decrypt.sh @@ -20,8 +20,12 @@ else echo "PASSCODE is set"; fi -gpg --quiet --batch --yes --decrypt --passphrase="${PASSCODE}" \ - --output "${credsfile}" "${gpgfile}" +gpg --batch \ + --yes \ + --decrypt \ + --passphrase="${PASSCODE}" \ + --output "${credsfile}" \ + "${gpgfile}" tar xvvf "${credsfile}" --directory "${credspath}" rm -rvf "${gpgfile}"