Skip to content

Commit f7f3f07

Browse files
author
Reece Dixon
committed
Add Fly.io deployment workflow for Open5GS
1 parent 6c0278a commit f7f3f07

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy Open5GS To Fly.io
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout Repository
13+
uses: actions/checkout@v2
14+
- name: Install Flyctl
15+
run: curl -L https://fly.io/install.sh | sh
16+
- name: Automate Deployment
17+
run: |
18+
flyctl launch --auto-confirm --image open5gs/open5gs:latest
19+
env:
20+
FLY_APP_NAME: AstraLink_OPEN_5GS
21+
FLY_ENV_NAME: production

0 commit comments

Comments
 (0)