From 169d6c7364bf98da68522e98889c015cf7f919dd Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 25 Nov 2024 18:00:57 -0700 Subject: [PATCH] ci: Set up the release workflow to use a deploy key [skip ci] --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9830a7..5d51526 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,13 @@ jobs: runs-on: ubuntu-latest steps: + - name: Configure SSH for Git + run: | + mkdir -p ~/.ssh + echo "${{ secrets.RELEASE_BOT_SSH_KEY }}" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + ssh-keyscan -H github.com >> ~/.ssh/known_hosts + - name: Checkout repository uses: actions/checkout@v3 with: