From a0c4be1d5cb925caf0c3d6a5ae23032109d58457 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 27 Oct 2024 15:56:21 -0400 Subject: [PATCH] actions: tell tar the file is a tar.xz --- .github/actions/decrypt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/decrypt.sh b/.github/actions/decrypt.sh index 6ba31dd5..e88b1c8d 100755 --- a/.github/actions/decrypt.sh +++ b/.github/actions/decrypt.sh @@ -27,6 +27,6 @@ gpg --batch \ --output "${credsfile}" \ "${gpgfile}" -tar xvvf "${credsfile}" --directory "${credspath}" +tar xlvvf "${credsfile}" --directory "${credspath}" rm -rvf "${gpgfile}" rm -rvf "${credsfile}"