Update dependency org.hibernate.orm:hibernate-community-dialects to v… #284
This file contains hidden or 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 "no-reply@github.com" && 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 |