Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Update README.md

Update README.md #9

Workflow file for this run

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