Skip to content

⬆️ Bump debug from 1.11.0 to 1.11.1 (#220) #139

⬆️ Bump debug from 1.11.0 to 1.11.1 (#220)

⬆️ Bump debug from 1.11.0 to 1.11.1 (#220) #139

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
environment:
name: production
url: https://jbaker.dev
steps:
- uses: actions/checkout@v6
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
post-deploy:
name: Post deploy tasks
runs-on: ubuntu-latest
needs: deploy
if: success()
steps:
- uses: honeybadger-io/github-notify-deploy-action@v1
with:
api_key: ${{ secrets.HONEYBADGER_API_KEY }}