From 76e3c9e7c9406421b02df0e001526b18cd9c4e0e Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 25 Jul 2023 17:19:55 +0530 Subject: [PATCH] fix: ssh creds impl --- .github/workflows/aur.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml index dc1ec69..d07e68f 100644 --- a/.github/workflows/aur.yml +++ b/.github/workflows/aur.yml @@ -19,9 +19,9 @@ jobs: uses: actions-hub/docker/cli@master env: SKIP_LOGIN: true - - run: echo $SSH_CREDS + - name: Setup SSH Credentials - run: echo $SSH_CREDS | base64 -d | tar -xzvf - -C ~/ssh_creds + run: base64 -d ${{ secrets.SSH_CREDS }} | tar -xzvf - -C ~/ssh_creds - name: AUR Routine run: docker build -t aur_routine package/aur && docker run aur_routine