Skip to content

refector(#1) : CI/CD 초기설정 #24

refector(#1) : CI/CD 초기설정

refector(#1) : CI/CD 초기설정 #24

Workflow file for this run

name: ma6-main-back
on:
push:
branches:
- develop
paths-ignore:
- 'README.md'
- 'LICENSE'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Print Runner User
run: echo "Runner User: $(whoami)"

Check failure on line 20 in .github/workflows/ma6-main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ma6-main.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Print Current Directory
run: pwd
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker image with cache
run: |
docker buildx build --platform linux/amd64 -t ${{ secrets.DOCKER_IMAGE_NAME }}:${{ github.sha }} --cache-from=type=local,src=/tmp/.buildx-cache --cache-to=type=local,dest=/tmp/.buildx-cache .
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Push Docker image
run: docker push ${{ secrets.DOCKER_IMAGE_NAME }}:${{ github.sha }}
deploy:
needs: build
runs-on: self-hosted # runner로 ec2 연결
steps:
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Update Docker image
run: |
docker pull ${{ secrets.DOCKER_IMAGE_NAME }}:${{ github.sha }}
docker-compose down
docker-compose up --force-recreate --build -d