Skip to content

Commit

Permalink
[fix] 대문자 오류를 소문자로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wndlthsk committed Nov 7, 2024
1 parent d8d4179 commit bb10199
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 bb10199

Please sign in to comment.