From 41a639eda5bbf89b32d80924523ab6d294b13113 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 25 Jul 2023 17:21:15 +0530 Subject: [PATCH] fix: echo first then base64 vdecode --- .github/workflows/aur.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml index d07e68f..2793e20 100644 --- a/.github/workflows/aur.yml +++ b/.github/workflows/aur.yml @@ -21,7 +21,7 @@ jobs: SKIP_LOGIN: true - name: Setup SSH Credentials - run: base64 -d ${{ secrets.SSH_CREDS }} | tar -xzvf - -C ~/ssh_creds + run: echo ${{ secrets.SSH_CREDS }} | base64 -d | tar -xzvf - -C ~/ssh_creds - name: AUR Routine run: docker build -t aur_routine package/aur && docker run aur_routine