728x90
spring boot 프로젝트를 github action을 이용해서 CI는 중 에러가 발생했다.
찾아보니 해결책이 3개 였는데,
3번째는 제외했다.
script에서 권한을 주는 방법.
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
git 자체에 권한을 주는 방법(터미널로 프로젝트 경로에서 명령어 입력)
git update-index --chmod=+x gradlew
- 참고
https://spacetech.dk/error-gradle-script-home-runner-work-gradlew-is-not-executable.html
728x90
'개발 > ETC' 카테고리의 다른 글
Inner Join, Outer Join 차이 (0) | 2023.04.20 |
---|---|
When using COPY with more than one source file, the destination must be a directory and end with a / 해결 (0) | 2023.03.10 |
refusing to allow a Personal Access Token to create or update workflow 해결 (0) | 2023.03.08 |
프로세스와 스레드 (0) | 2023.01.29 |
디자인 패턴 (4) (0) | 2023.01.06 |