File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy to server
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - develop
7
+ - main
8
+
9
+ jobs :
10
+ build-and-push-image :
11
+ name : Build and Publish Docker Image
12
+ uses : Modgy/modgy-devops/.github/workflows/publish_docker_image.yml@main
13
+ secrets :
14
+ DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
15
+ DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
16
+ with :
17
+ API_URL : ${{ vars.API_URL }}
18
+
19
+ deploy-to-test-server :
20
+ name : Update App on Test Server
21
+ needs : build-and-push-image
22
+ uses : Modgy/modgy-devops/.github/workflows/update_service.yml@main
23
+ secrets :
24
+ SERVER_HOST : ${{ secrets.SERVER_HOST }}
25
+ SERVER_USERNAME : ${{ secrets.SERVER_USERNAME }}
26
+ SSH_KEY : ${{ secrets.SSH_KEY }}
27
+ SSH_PASSPHRASE : ${{ secrets.SSH_PASSPHRASE }}
28
+ with :
29
+ DOCKER_SERVICE : frontend
You can’t perform that action at this time.
0 commit comments