ci: Set up the release workflow to use a deploy key [skip ci]

This commit is contained in:
2024-11-25 18:00:57 -07:00
parent e1fb5f570e
commit 169d6c7364
+7
View File
@@ -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: