Skip to content

Commit

Permalink
Merge pull request #126 from kakao-tech-campus-2nd-step3/feat/#108-bl…
Browse files Browse the repository at this point in the history
…ue-green

[fix] 대문자 오류를 소문자로 변경
  • Loading branch information
wndlthsk authored Nov 7, 2024
2 parents 9f91bbb + bb10199 commit 878c9ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ jobs:
# 이전 컨테이너 정리
- name: Remove previous docker container
run: |
if [[ "${{ env.CURRENT_VERSION }}" != "none" ]]; then
echo "Removing previous container inplace-${{ env.CURRENT_VERSION }}"
sudo docker stop inplace-${{ env.CURRENT_VERSION }} || true
sudo docker rm inplace-${{ env.CURRENT_VERSION }} || true
if [[ "${{ env.current_version }}" != "none" ]]; then
echo "Removing previous container inplace-${{ env.current_version }}"
sudo docker stop inplace-${{ env.current_version }} || true
sudo docker rm inplace-${{ env.current_version }} || true
else
echo "No active container to remove"
fi
Expand Down

0 comments on commit 878c9ff

Please sign in to comment.