Skip to content

Commit 584f849

Browse files
committed
feat(ci-cd): add build and deploy process
1 parent a89e867 commit 584f849

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/deploy.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)