Merge pull request #67 from Funssion-SWM/dependabot/npm_and_yarn/babe… #327
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Next CI/CD in Develop branch | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add env | |
run: echo "${{ secrets.NEXT_LOCAL_ENV }}" > ./.env.local | |
- name: Docker build | |
run: DOCKER_BUILDKIT=1 docker build -t ${{ secrets.DOCKER_REPO }}/${{ secrets.DOCKER_IMAGE }} . | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker push | |
run: docker push ${{ secrets.DOCKER_REPO }}/${{ secrets.DOCKER_IMAGE }} | |
- name: Deploy to dev | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ec2-user | |
key: ${{ secrets.PRIVATE_KEY }} | |
script: | | |
docker stop frontend | |
docker rm frontend | |
docker rmi ${{ secrets.DOCKER_REPO }}/${{ secrets.DOCKER_IMAGE }} | |
docker pull ${{ secrets.DOCKER_REPO }}/${{ secrets.DOCKER_IMAGE }} | |
docker run -dp 3000:3000 --name=frontend ${{ secrets.DOCKER_REPO }}/${{ secrets.DOCKER_IMAGE }} |