Initial version of per dialect classes, support Oracle Database deleteBy #25
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
name: Build | |
on: [ push ] | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build | |
cache-read-only: ${{ github.ref_name != 'main' && github.ref_name != 'development' }} | |
- name: Publish to Maven Repository | |
if: ${{ github.ref_name == 'main' || github.ref_name == 'development' }} | |
uses: gradle/gradle-build-action@v2 | |
env: | |
ORG_GRADLE_PROJECT_geysermcUsername: ${{ vars.DEPLOY_USER }} | |
ORG_GRADLE_PROJECT_geysermcPassword: ${{ secrets.DEPLOY_PASS }} | |
with: | |
arguments: publish | |
cache-read-only: ${{ github.ref_name != 'main' && github.ref_name != 'development' }} | |
- name: Notify Discord | |
if: ${{ always() && github.repository == 'GeyserMC/DatabaseUtils' }} | |
uses: Tim203/actions-git-discord-webhook@main | |
with: | |
webhook_url: ${{ secrets.DISCORD_WEBHOOK }} | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: "**/build/test-results/**/*.xml" |