Skip to content

Commit

Permalink
feat: fly.io deployment using CI (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor authored Mar 2, 2024
1 parent 3d3c902 commit 76ff67b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy Backend to Fly.io

on:
push:
branches:
- main
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Get source code
uses: actions/checkout@v3

- name: Deploy to Fly.io
uses: superfly/flyctl-actions@1.4
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: "deploy --remote-only --dockerfile ./Dockerfile --config ./fly.toml"

0 comments on commit 76ff67b

Please sign in to comment.