We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c0278a commit f7f3f07Copy full SHA for f7f3f07
.github/workflows/deploy_open5gs.yml
@@ -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