From 419d4934db36c29a27bbc669166cbefdf6b03c36 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Fri, 11 Feb 2022 21:10:36 +0100 Subject: [PATCH] gh: Make sure ssh key has right perms --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2bac7a82..b8d43ff5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,7 +112,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Retrieve SSH key - run: 'echo "$ssh_key" > ssh_key' + run: 'echo "$ssh_key" > ssh_key && chmod 600 ssh_key' env: ssh_key: ${{ secrets.SSH_KEY }}