Skip to content

Commit

Permalink
🐛 [FIX] MAC용 Base Image 변경 (ARM) #253
Browse files Browse the repository at this point in the history
  • Loading branch information
miiiinju1 committed Sep 8, 2023
1 parent c25e144 commit ad19fab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cicd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,13 @@ jobs:
java-version: '11'

# GitHub Secret에서 application-dev.yml 내용을 불러와 파일로 저장
# 로컬용 Docker image는 MAC에서 주로 사용할 예정이기 때문에 ARM Base image를 사용합니다.

- name: Create application-dev.yml from GitHub Secret
run: echo "${{ secrets.APPLICATION_DEV_YML }}" > src/main/resources/application.yml
run:
echo "${{ secrets.APPLICATION_DEV_YML }}" > src/main/resources/application.yml
# 로컬용 ARM Base Image를 사용하는 Dockerfile로 변경
echo "${{ secrets.DOCKERFILE_FOR_DEV }}" > Dockerfile


- name: Build with Gradle
Expand Down

0 comments on commit ad19fab

Please sign in to comment.