문제
Github Actions 을 사용하여 ci/cd 에 대해 공부하던 중 아래와 같은 에러가 발생하였다.
해결
나의 경우 gradlew 의 실행 권한을 설정해주지 않았기 때문에 발생한 문제였다.
git update-index --chmod=+x gradlew
위의 명령어를 입력후에 commit 후 github 로 push 해주면 해당 문제가 해결된다.
참조 - https://spacetech.dk/error-gradle-script-home-runner-work-gradlew-is-not-executable.html