Skip to content

Commit

Permalink
feat(infra): add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wing committed Dec 14, 2023
1 parent f8545f3 commit 23c3d61
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/flyio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy to Fly

on: [push]

jobs:
deploy:
name: Deploy proxy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set flyctl
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 }}

0 comments on commit 23c3d61

Please sign in to comment.