반응형 SMALL github1 CI/CD (GitHub Actions, Jenkins) CI/CD란? 단계 설명 CI (Continuous Integration)코드 푸시마다 자동 빌드/테스트CD (Continuous Deployment)테스트 통과 시 자동 배포까지 실행1. GitHub Actions로 CI/CD 구현.github/workflows/deploy.ymlname: Spring Boot CI/CDon: push: branches: [ "main" ]jobs: build-deploy: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v3 with:.. 2025. 4. 16. 이전 1 다음 LIST