diff --git a/.github/actions/creds.tar.xz.gpg b/.github/actions/creds.tar.xz.gpg index 5a164b7d..fdec6aaa 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 e88b1c8d..f4e8d36e 100755 --- a/.github/actions/decrypt.sh +++ b/.github/actions/decrypt.sh @@ -23,10 +23,10 @@ fi gpg --batch \ --yes \ --decrypt \ - --passphrase="${PASSCODE}" \ - --output "${credsfile}" \ - "${gpgfile}" + --passphrase="$PASSCODE" \ + --output "$credsfile" \ + "$gpgfile" -tar xlvvf "${credsfile}" --directory "${credspath}" -rm -rvf "${gpgfile}" -rm -rvf "${credsfile}" +tar xlvvf "$credsfile" --directory "$credspath" +rm -rvf "$gpgfile" +rm -rvf "$credsfile"