CICD/Git
-
Git - workflow 자동 배포 작성하는법-tag방식 (with ncp)CICD/Git 2025. 8. 13. 15:04
tag방식 git workflow 작성방법 name: Auto deploy to NCPon: push: tags: - 'v*.*.*'jobs: deploy: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up JDK 8 uses: actions/setup-java@v3 with: java-version: '8' distribution: 'adopt' - name: Cache Maven dependencies ..
-
Git - 자동 배포 workflow 작성 하는법 (with ncp) - 일반 branchCICD/Git 2025. 8. 12. 15:02
일반 branch 배포 하는법 name: Auto deploy to NCPon: push: branches: - developjobs: deploy: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK 8 uses: actions/setup-java@v3 with: java-version: '8' distribution: 'adopt' - name: Cache Maven dependencies uses: actions/cache@v3 with: ..