CI/CD - 프로젝트에 적용하기 - github Actions&NCP&GHCR 사용
·
✍️2023/Cloud
프론트 CI/CD Dockerfile - front FROM node:18.16-alpine WORKDIR /app/frontend COPY package*.json ./ RUN yarn install COPY . . EXPOSE 3000 CMD ["npm", "start"]CICD -front name: Build and Deploy Docker Image on: push: branches: - main - develop jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [18] name: Node ${{ matrix.node-version }} sample steps: - name: Checkout code uses: action..
Github Actions CI (gradle)
·
✍️2023/Cloud
일단 build 시 jar 파일이 생성되는 과정만 만들어 둘 것이다. (이외의 컨벤션은 아직 명확하게 정해둔게 없기 때문에 추후 수정 예정) Github workflows! 맨 처음 텅 빈 코드부터 짜기에는 어려움이 있으니 깃헙측에서 친절하게 템플릿을 제공한다. Java With Gradle 이라는 것을 이용하여 configure 해보겠다. # This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workf..
리촬리
'GithubActions' 태그의 글 목록