Merge branch 'main' of https://github.com/Luxshan2000/aws-pipeline #5
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
name: CICD | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
build-frontend: | ||
runs-on: self-hosted | ||
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 | ||
- name: Publish image to docker hub | ||
run: docker push luxshan/aws-pipeline:latest | ||
deploy: | ||
needs: build | ||
Check failure on line 24 in .github/workflows/workflow.yml GitHub Actions / CICDInvalid workflow file
|
||
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 |