Skip to content

Commit

Permalink
refactor(#31): docker pull 이미지 태그를 릴리즈 버전으로 명시하도록 변경경
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongwisdom committed Jan 22, 2025
1 parent ebb176d commit f8347e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
context: .
file: ./dockerfile.nginx
push: true
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/nginx:latest,
${{ secrets.NCP_CONTAINER_REGISTRY }}/nginx:${{ github.run_number }}
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/nginx:${{ secrets.RELEASE_VERSION }},
${{ secrets.NCP_CONTAINER_REGISTRY }}/nginx:latest
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/nginx:latest
cache-to: type=inline

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
context: .
file: ./dockerfile.server
push: true
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/server:latest,
${{ secrets.NCP_CONTAINER_REGISTRY }}/server:${{ github.run_number }}
tags: ${{ secrets.NCP_CONTAINER_REGISTRY }}/server:${{ secrets.RELEASE_VERSION }},
${{ secrets.NCP_CONTAINER_REGISTRY }}/server:latest
cache-from: type=registry,ref=${{ secrets.NCP_CONTAINER_REGISTRY }}/server:latest
cache-to: type=inline

Expand Down

0 comments on commit f8347e8

Please sign in to comment.