chore: update dependencies #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Destroy Preview | |
| on: | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| destroy: | |
| runs-on: ubuntu-latest | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Fly | |
| uses: superfly/flyctl-actions/setup-flyctl@master | |
| - name: Destroy preview app | |
| run: flyctl apps destroy pr-${{ github.event.pull_request.number }}-counterslayer --yes || echo "App not found or already deleted" |