Merge pull request #193 from SystemConsultantGroup/develop #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push: | |
branches: ["main"] | |
env: | |
dockerimage_tag: ${{ github.sha }} | |
dockerimage_name: scgskku/ice-gs-thesis-fe-prod | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: --------------- Code Repo --------------- | |
run: echo "Code Repo" | |
- name: Code Repo 불러오기 | |
uses: actions/checkout@v4 | |
- name: Docker 준비(1/4) - 메타데이터 생성 | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: | | |
${{ env.dockerimage_name }} | |
tags: | | |
${{ env.dockerimage_tag }} | |
latest | |
flavor: | | |
latest=true | |
- name: Docker 준비(2/4) - QEMU 설정 | |
uses: docker/setup-qemu-action@v3 | |
- name: Docker 준비(3/4) - buildx 설정 | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker 준비(4/4) - 레지스트리 로그인 | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: env 파일 생성 | |
run: | | |
echo NEXT_PUBLIC_API_ENDPOINT=${{secrets.API_ENDPOINT_PROD}} >> .env | |
cat .env | |
- name: Docker 이미지 빌드+푸시 | |
id: build-and-push | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
provenance: false | |
- name: --------------- Config Repo --------------- | |
run: echo "[Config Repo]" | |
- name: Config Repo 불러오기 | |
uses: actions/checkout@v4 | |
with: | |
repository: SystemConsultantGroup/ice-grad-thesis-config | |
ref: main | |
token: ${{ secrets.ACTION_TOKEN }} | |
path: ice-grad-thesis-config | |
- name: Kustomize 준비 | |
uses: imranismail/[email protected] | |
- name: Config Repo 이미지 값 업데이트 (Kustomize) | |
run: | | |
cd ice-grad-thesis-config/overlays/prod/fe/ | |
kustomize edit set image ${{ env.dockerimage_name }}:${{ env.dockerimage_tag }} | |
cat kustomization.yaml | |
- name: Config Repo 변경사항 푸시 | |
run: | | |
cd ice-grad-thesis-config | |
git config --global user.email "[email protected]" | |
git config --global user.name "hynseok" | |
git commit -am "Update image tag" | |
git push -u origin main | |
- name: --------------- Clean Up --------------- | |
run: echo "Clean Up" |