-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ci-cd 설정 #2
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
와우 굳굳 일단 몇가지 리뷰 남겨봄요
.github/workflows/cd.yml
Outdated
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.22.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
잘 몰라서 하는 질문일 수 있음!!
배포 워크플로우랑, 도커파일 확인결과 고랭 코드 빌드는 도커 이미지에서 하게 되고, 해당 깃헙 액션 워커는 소스코드 빌드등의 작동을 안하는것같은데, 이러면 해당 setup go 부분은 필요가 없는것같아용
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
작업하던 브랜치 말고 이전꺼에서 갖고와서 그런가 중구난방이네욥ㅠ
on: | ||
push: | ||
branches: [ "main" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
테스트 할 수 있는 꿀팁!!
on: | |
push: | |
branches: [ "main" ] | |
on: | |
push: | |
branches: | |
- main | |
- chore/ci-cd |
위처럼 해두면 이거 테스트한다고 계속 main에 머지해보고 할 필요 없이 해당 브렌치에 테스트로 계속 푸시해보면서 해당 워크플로우 동작시켜서 배포 테스트 할 수 있어용
테스트 다 되고 마지막에 이거 머지시키기 전에 해당부분 -chore/ci-cd
부분 제거하고 머지시키면 되고용
FROM golang:1.22.5 | ||
|
||
# Set destination for COPY | ||
WORKDIR /app | ||
|
||
# Download Go modules | ||
COPY go.mod go.sum ./ | ||
RUN go mod download | ||
|
||
# Copy the source code. Note the slash at the end, as explained in | ||
# https://docs.docker.com/reference/dockerfile/#copy | ||
COPY *.go ./ | ||
|
||
# Build | ||
RUN CGO_ENABLED=0 GOOS=linux go build -o /techbloghub-server | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그 스테이지라고 하던가 분리해서 빌드용 배포용 베이스 이미지 다르게 하는것도 후에 찾아보면 좋을듯?
일단 위에서 내가 코멘트 남긴것처럼 해당 브렌치에서 배포 동작시켜보고 배포 잘 되는거 확인 된 다음에 도커 이미지파일 수정해가면서 잘 되나 안되나 테스트 하는 방향으로?
나중에 나도 어케하나 더 찾아보게되면 코멘트로 추가 남기거나 디코에 올려둠요
더 늦어질 것 같아서 일단 PR 생성부터~!