-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 988 Bytes
/
frontend.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
name: CICD Frontend
on:
push:
branches: [main]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build docker image
run: docker build -t luxshan/aws-pipeline/frontend ./frontend
- name: Publish image to docker hub
run: docker push luxshan/aws-pipeline/frontend:latest
deploy:
needs: build
runs-on: [aws-ec2]
steps:
- name: Pull image from docker hub
run: docker pull luxshan/aws-pipeline/frontend:latest
- name: Delete old container
run: docker rm -f aws-pipeline-frontend-container
- name: Run docker container
run: docker run -d -p 3000:3000 --name aws-pipeline-frontend-container luxshan/aws-pipeline/frontend