2023-01-13 11:27:05 -08:00
|
|
|
name: Deploy to Fly
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
env:
|
|
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Fly
|
|
|
|
uses: superfly/flyctl-actions/setup-flyctl@master
|
|
|
|
|
|
|
|
- name: Deploy
|
2023-04-04 20:17:53 -07:00
|
|
|
run: flyctl deploy --remote-only
|