-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (62 loc) · 1.87 KB
/
deploy.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Docker Build and Push
# on:
# push:
# branches: [ main ]
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Create env file
run: |
touch .env
echo ${{secrets.DOT_ENV_FILE}} | base64 -d > .env
cat .env
- name: Build and Push Docker Base Image
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/Dockerfile.base
push: true
tags: aohus/virtu-mall-base:latest
- name: Build and Push Docker App Image
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/Dockerfile
push: true
tags: aohus/virtu-mall:latest
no-cache: true
- name: Copy docker-compose.yml to Server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.AWS_EC2_HOST }}
username: ${{ secrets.AWS_EC2_USERNAME }}
key: ${{ secrets.AWS_EC2_SSH_KEY }}
source: "docker-compose.yml"
target: "/home/ubuntu"
- name: Copy nginx.conf to Server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.AWS_EC2_HOST }}
username: ${{ secrets.AWS_EC2_USERNAME }}
key: ${{ secrets.AWS_EC2_SSH_KEY }}
source: "configs/nginx.conf"
target: "/home/ubuntu"
- name: Deploy to AWS EC2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.AWS_EC2_HOST }}
username: ${{ secrets.AWS_EC2_USERNAME }}
key: ${{ secrets.AWS_EC2_SSH_KEY }}
script: |
docker pull aohus/virtu-mall
docker-compose down
docker-compose up -d