File size: 456 Bytes
d31a6aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
name: Cleanup Koyeb application
on:
delete:
branches:
- '*'
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Install and configure the Koyeb CLI
uses: koyeb-community/koyeb-actions@v2
with:
api_token: "${{ secrets.KOYEB_EXAMPLES_APPS_TOKEN }}"
- name: Cleanup Koyeb application
uses: koyeb/action-git-deploy/cleanup@v1
with:
app-name: php-${{ github.event.ref }}
|