Skip to content

Commit

Permalink
chmod +x before executing ./gradlew
Browse files Browse the repository at this point in the history
this might be a problem for modders who use Windows, since Windows drops
the executable bit
  • Loading branch information
code-explorer786 committed Mar 26, 2024
1 parent c39d4fd commit 869854c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/commitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
with:
java-version: 17
- name: Build mod jar
run: ./gradlew deploy
run: |
chmod +x ./gradlew
./gradlew deploy
- name: Upload built jar file
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 869854c

Please sign in to comment.