Skip to content

fixed typos

fixed typos #27

Workflow file for this run

name: Deploy to Fly.io
on:
push:
branches: [ main ]
workflow_dispatch: # Allow manual triggering
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Fly CLI
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy to Fly.io
run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}