diff options
-rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e210470e..62f386c2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,15 +14,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - uses: actions/checkout@v3 + - name: Set up JDK 16 + uses: actions/setup-java@v3 with: - java-version: 1.8 + java-version: '16' + distribution: 'adopt' - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Download hychat as a dependency - run: mkdir mods && wget https://cdn.discordapp.com/attachments/782825804983566356/791708191519932426/Hychat-1.12.1-BETA.jar -O mods/Hychat-1.12.1-BETA.jar + run: mkdir jars && wget https://cdn.discordapp.com/attachments/782825804983566356/791708191519932426/Hychat-1.12.1-BETA.jar -O jars/Hychat-1.12.1-BETA.jar - name: Build with Gradle run: ./gradlew build - uses: actions/upload-artifact@v2 |