mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-22 09:23:05 +00:00
refactor: split out workflows so that review app cleanup is properly run
The old setup - copy-pasted from the internet somewhere - was incorrect based on how github actions works. *sigh*
This commit is contained in:
parent
dce20c0a8f
commit
28328e4d90
23
.github/workflows/review-app-cleanup.yml
vendored
Normal file
23
.github/workflows/review-app-cleanup.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
name: 'deploy'
|
||||||
|
|
||||||
|
# yamllint disable-line rule:truthy
|
||||||
|
on:
|
||||||
|
# onl run this workflow on pull request events
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
destroy_review_app:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Destroy the review app
|
||||||
|
uses: dokku/github-action@master
|
||||||
|
with:
|
||||||
|
# destroy a review app
|
||||||
|
command: review-apps:destroy
|
||||||
|
git_remote_url: 'ssh://dokku@dokku.me:22/nginx-buildpack'
|
||||||
|
# specify a name for the review app
|
||||||
|
review_app_name: nginx-buildpack-${{ github.event.pull_request.number }}
|
||||||
|
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|
@ -26,18 +26,3 @@ jobs:
|
|||||||
# specify a name for the review app
|
# specify a name for the review app
|
||||||
review_app_name: nginx-buildpack-${{ github.event.pull_request.number }}
|
review_app_name: nginx-buildpack-${{ github.event.pull_request.number }}
|
||||||
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
|
||||||
destroy_review_app:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
# only run when a pull request is closed
|
|
||||||
if: github.event_name == 'pull_request' && github.event.action == 'closed'
|
|
||||||
steps:
|
|
||||||
- name: Destroy the review app
|
|
||||||
uses: dokku/github-action@master
|
|
||||||
with:
|
|
||||||
# destroy a review app
|
|
||||||
command: review-apps:destroy
|
|
||||||
git_remote_url: 'ssh://dokku@dokku.me:22/nginx-buildpack'
|
|
||||||
# specify a name for the review app
|
|
||||||
review_app_name: nginx-buildpack-${{ github.event.pull_request.number }}
|
|
||||||
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
Loading…
Reference in New Issue
Block a user