aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-07-18 10:34:42 +0530
committerBobby <[email protected]>2022-07-18 10:34:42 +0530
commit31f1050179a3bcfdca14931cd4a11881477d528d (patch)
tree420b65b50dc076d97ae331e5408cec7c9d40fcd1 /.github
parent1fd250c061b7ce6f4ad4fb556fd9a10a10d5eb01 (diff)
downloadthatcomputerscientist-31f1050179a3bcfdca14931cd4a11881477d528d.tar.xz
thatcomputerscientist-31f1050179a3bcfdca14931cd4a11881477d528d.zip
Added Fly Deploy Workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00000000..f6103c37
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,12 @@
+name: Fly Deploy
+on: [push]
+env:
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
+jobs:
+ deploy:
+ name: Deploy app
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: superfly/flyctl-actions/setup-flyctl@master
+ - run: flyctl deploy --remote-only \ No newline at end of file