Skip to content

Commit

Permalink
Create backend.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Luxshan2000 authored Sep 28, 2023
1 parent dd8b8db commit 4917bc3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/backend.yml
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

0 comments on commit 4917bc3

Please sign in to comment.