Skip to content

fix: scale back layout width to 8xl (1536px) #19

fix: scale back layout width to 8xl (1536px)

fix: scale back layout width to 8xl (1536px) #19

Workflow file for this run

name: Preview Cleanup
on:
pull_request_target:
types: [closed]
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
PREVIEW_APP: yaci-explorer-pr-${{ github.event.pull_request.number }}
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Delete preview app
run: |
if flyctl apps list | grep -q "$PREVIEW_APP"; then
echo "Deleting preview app: $PREVIEW_APP"
flyctl apps destroy "$PREVIEW_APP" --yes
fi