Correct secret name for review app jobs

This commit is contained in:
Christopher C. Wells 2022-10-30 14:59:42 -07:00
parent e387c5cba2
commit 2e7dedea45
1 changed files with 2 additions and 2 deletions

View File

@ -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