Does anyone know how to fix this interesting problem I've run into when attempting to publish my GitHub package.
I've already run this on the cmd line: git update-index --chmod=+x gradlew
From what I understand, this is flagging the file to be executable, but it doesn't seem to be recognized
This is my workflow file:
name: Run Gradle on PRs
on: pull_request
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 16
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle build
run: ./gradlew build