Skip to content

Commit

Permalink
Merge pull request #28 from code-explorer786/master
Browse files Browse the repository at this point in the history
chmod +x before executing ./gradlew
  • Loading branch information
Anuken authored Mar 29, 2024
2 parents c39d4fd + 869854c commit dc6736d
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 dc6736d

Please sign in to comment.