Skip to content

Commit

Permalink
fix: docker image name format
Browse files Browse the repository at this point in the history
  • Loading branch information
김교휘 authored and 김교휘 committed May 20, 2024
1 parent add1c93 commit 6be0f30
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cogo_cicd_gradle.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# gradlew 에러시 개행문자 오류
name: Java CI with Gradle

on:
Expand All @@ -23,6 +22,12 @@ jobs:
java-version: '17'
distribution: 'temurin'

# Convert line endings to Unix format
- name: Convert line endings to Unix
run: |
sudo apt-get install dos2unix
dos2unix ./gradlew
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew

Expand Down Expand Up @@ -57,3 +62,4 @@ jobs:
- name: Delete old docker image
run: sudo docker system prune -f


0 comments on commit 6be0f30

Please sign in to comment.