-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd8b8db
commit 4917bc3
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: CICD Backend | ||
|
||
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 . | ||
- name: Publish image to docker hub | ||
run: docker push luxshan/aws-pipeline:latest | ||
|
||
deploy: | ||
needs: build | ||
runs-on: [aws-ec2] | ||
steps: | ||
- name: Pull image from docker hub | ||
run: docker pull luxshan/aws-pipeline | ||
- name: Delete old container | ||
run: docker rm -f aws-pipeline-container | ||
- name: Run docker container | ||
run: docker run -d -p 3000:3000 --name aws-pipeline-container luxshan/aws-pipeline |