Update dependency de.varilx:base-api to v1.1.0 #73
Workflow file for this run
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
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.commits[0].message, '[ci-skip]')" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
cache: 'gradle' | |
- uses: gradle/actions/setup-gradle@v4 | |
- name: Configure Git | |
run: git config --global user.email "[email protected]" && git config --global user.name "Gitea Actions" | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew shadowJar --no-daemon --stacktrace | |
- name: Rebuild on Failure | |
if: ${{ failure() }} | |
run: | | |
./gradlew clean cleanCache | |
./gradlew shadowJar --no-daemon --stacktrace |