Skip to content

Trying out deploy with fly instead of flyctl #15

Trying out deploy with fly instead of flyctl

Trying out deploy with fly instead of flyctl #15

Workflow file for this run

name: Fly Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install fly CLI 🪰
run: |
curl -L https://fly.io/install.sh | sh
echo "/home/runner/.fly/bin" >> $GITHUB_PATH
- name: Deploy fly 🪰
run: fly deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}