mirror of https://github.com/snachodog/mybuddy.git
Correct secret name for review app jobs
This commit is contained in:
parent
e387c5cba2
commit
2e7dedea45
|
@ -52,7 +52,7 @@ jobs:
|
||||||
command: review-apps:create
|
command: review-apps:create
|
||||||
git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }}
|
git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }}
|
||||||
review_app_name: pr-${{ github.event.pull_request.number }}
|
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:
|
destroy-review-app:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.event_name == 'pull_request' && github.event.action == 'closed'
|
if: github.event_name == 'pull_request' && github.event.action == 'closed'
|
||||||
|
@ -63,7 +63,7 @@ jobs:
|
||||||
command: review-apps:destroy
|
command: review-apps:destroy
|
||||||
git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }}
|
git_remote_url: ${{ env.DOKKU_GIT_REMOTE_URL }}
|
||||||
review_app_name: pr-${{ github.event.pull_request.number }}
|
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:
|
deploy-docs:
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue