-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (29 loc) · 985 Bytes
/
fly-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# # See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
# name: Fly Deploy
# on:
# push:
# branches:
# - main
# jobs:
# deploy:
# name: Deploy Applications
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: superfly/flyctl-actions/setup-flyctl@master
# - name: Deploy Devhub
# run: flyctl deploy --remote-only -c fly.toml
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# - name: Deploy Infra
# run: flyctl deploy --remote-only -c fly.infra.toml
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# - name: Deploy Events
# run: flyctl deploy --remote-only -c fly.events.toml
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# - name: Deploy Templar
# run: flyctl deploy --remote-only -c fly.templar.toml
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}