From ab7b7505121f421f98a9c2aa8cc2d7b55d37b9f1 Mon Sep 17 00:00:00 2001 From: miloshb <32203070+miloshb@users.noreply.github.com> Date: Wed, 9 Sep 2026 13:06:21 +0200 Subject: [PATCH] adding ssh key auth for github actions --- .github/workflows/production-pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/production-pipeline.yml b/.github/workflows/production-pipeline.yml index dc0b78e..d5f4471 100644 --- a/.github/workflows/production-pipeline.yml +++ b/.github/workflows/production-pipeline.yml @@ -69,6 +69,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 # Required to see commit history cleanly + ssh-key: ${{ secrets.DEPLOY_KEY }} # <--- Instructs Git to authenticate using deploy key - name: Setup Node.js uses: actions/setup-node@v4