Skip to content

Commit

Permalink
Update workflow java again
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed May 8, 2024
1 parent b9c4f05 commit cfe6cc6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk
uses: actions/setup-java@v1
- name: setup JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 21
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v1
- name: setup JDK
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'temurin'
java-version: 21

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
restore-keys: |
gradle-
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 21

- name: Grant execute permission for gradlew
run: chmod +x gradlew

Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,20 @@ Please see the [wiki](https://github.com/samolego/FabricTailor/wiki) :wink:.
## Permissions

FabricTailor provides permission support for permission manager of your choice. Skin changing is granted by default.
/skin command

* `/skin` command permission
```
fabrictailor.command.skin
```
You can also disable skin clearing / setting only
* You can also disable skin clearing / setting only
```
fabrictailor.command.skin.set
```
* Or setting by URL only
```
fabrictailor.command.skin.set.url
```
* In general, each command subnode has its own permission node, lowercase and separated by dots.


## Setup
Expand Down

0 comments on commit cfe6cc6

Please sign in to comment.