[0.3.30] Update TabooLib 6.0.12-24 > 1.20.2 Support #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# By Super_chen520 | |
# Date 2023-8-30 | |
name: Chemdah Release | |
on: | |
push: | |
branches: [ "rebirth" ] | |
pull_request: | |
branches: [ "rebirth" ] | |
jobs: | |
releaseJar: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# - name: Build with Gradle | |
# run: ./gradlew build | |
# First build | |
- name: build | |
id: build_1 | |
run: ./gradlew build | |
# Second build | |
- name: build (retry 1) | |
id: build_2 | |
if: steps.build_1.outcome == 'failure' | |
run: ./gradlew build | |
# Third build | |
- name: build (retry 2) | |
id: build_3 | |
if: steps.build_2.outcome == 'failure' | |
run: ./gradlew build | |
# Fourth build | |
- name: build (retry 3) | |
id: build_4 | |
if: steps.build_3.outcome == 'failure' | |
run: ./gradlew build | |
# output jar | |
- name: Upload Artifacts | |
uses: actions/[email protected] | |
with: | |
name: Chemdah Release | |
path: build/libs/*.jar |