From 59fddbcf7a4482e9fe63d36a061ab5180339b3ea Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Mon, 23 Oct 2023 11:19:28 +0200 Subject: [PATCH] Revert "build: Try with id_rsa instead (#68)" (#70) This reverts commit 9d1b6f2671e50fb761d8f4d2f5c0debf58789bfa. --- .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 1415cab..3c8729c 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_rsa - chmod 600 .github/id_rsa - ssh-add .github/id_rsa + echo $GUSTAV_KEY | base64 -di > .github/id_ed2551 + chmod 600 .github/id_ed2551 + ssh-add .github/id_ed2551 - name: Publish API documentation (tag) if: startsWith(github.event.ref, 'refs/tags/v')