From 61ff4f5079a90f69c6f85dcdd3bfc035571392bb Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Mon, 23 Oct 2023 10:17:08 +0200 Subject: [PATCH] build: Try with id_rsa instead --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fda5686..25ee7a1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -105,9 +105,9 @@ jobs: GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} run: |+ eval "$(ssh-agent -s)" - echo $GUSTAV_KEY | base64 -di > .github/id_ed2551 - chmod 600 .github/id_ed2551 - ssh-add .github/id_ed2551 + echo $GUSTAV_KEY | base64 -di > .github/id_rsa + chmod 600 .github/id_rsa + ssh-add .github/id_rsa - name: Publish API documentation (tag) if: startsWith(github.event.ref, 'refs/tags/v')