CI/CD
[CI/CD] Springboot와 Github Actions를 사용한 컨테이너 자동 배포
목적 코드의 푸시부터 빌드, 컨테이너 이미지 생성, 배포까지의 단계를 자동화 하기 위함 목차 구성 Github Actions 스크립트 실행 과정 1. 구성 Springboot 2.3+ Github Actions https://emgc.tistory.com/149 Springboot에서 bootBuildImage를 사용하여 도커 허브로 push하는 부분은 윗글을 참조하면 되겠다. 2. Github Actions 스크립트 name: Java CI with Gradle on: push: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/..