Allow int/boolean in delete to indicate whether rows were deleted #18
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 ] | |
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: ${{ (success() || failure()) && github.repository == 'GeyserMC/DatabaseUtils' }} | |
uses: Tim203/actions-git-discord-webhook@main | |
with: | |
webhook_url: ${{ secrets.DISCORD_WEBHOOK }} |