From 2e7dedea4518d6a0eb7b8b3d6f4903efcd16f8c3 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Sun, 30 Oct 2022 14:59:42 -0700 Subject: [PATCH] Correct secret name for review app jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8701c474..9148ee4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: command: review-apps:create git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }} review_app_name: pr-${{ github.event.pull_request.number }} - ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} + ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }} destroy-review-app: runs-on: ubuntu-latest if: github.event_name == 'pull_request' && github.event.action == 'closed' @@ -63,7 +63,7 @@ jobs: command: review-apps:destroy git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }} review_app_name: pr-${{ github.event.pull_request.number }} - ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} + ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }} deploy-docs: needs: test runs-on: ubuntu-latest