Skip to content

See if this works

See if this works #70

Workflow file for this run

name: Deploy on fly.io
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Read app name
uses: SebRollen/[email protected]
id: app_name
with:
file: "fly.toml"
field: "app"
- name: Deploy
uses: superfly/[email protected]
with:
args: "deploy --remote-only --app ${{ steps.app_name.outputs.value }}"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}