-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.41 KB
/
frontendDeploy.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Deploy frontend to EC2
on:
push:
paths:
- "frontend/**"
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create .env file
run: |
echo "SOCKET_IP"=${{ secrets.SOCKET_IP }} > ./frontend/.env
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
docker build -t ${{ secrets.DOCKER_USERNAME }}/worry-is-bubble-frontend:latest ./frontend
docker push ${{ secrets.DOCKER_USERNAME }}/worry-is-bubble-frontend:latest
- name: Deploy to EC2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_KEY }}
port: ${{ secrets.SSH_PORT }}
script: |
docker pull ${{ secrets.DOCKER_USERNAME }}/worry-is-bubble-frontend:latest
docker stop worry-is-bubble-frontend || true
docker rm worry-is-bubble-frontend || true
docker run -d --name worry-is-bubble-frontend -p 80:80 ${{ secrets.DOCKER_USERNAME }}/worry-is-bubble-frontend:latest