From 2aaf33d73ce945865ade8405f69a0fe931f04dc7 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 25 Jul 2023 17:23:36 +0530 Subject: [PATCH] fix: create directory b4 untarring --- .github/workflows/aur.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml index 2793e20..186a3bd 100644 --- a/.github/workflows/aur.yml +++ b/.github/workflows/aur.yml @@ -19,7 +19,10 @@ jobs: uses: actions-hub/docker/cli@master env: SKIP_LOGIN: true - + + - name: Create SSH_CREDS directory + run: mkdir ~/ssh_creds + - name: Setup SSH Credentials run: echo ${{ secrets.SSH_CREDS }} | base64 -d | tar -xzvf - -C ~/ssh_creds