Skip to content

Added first version of MongoDB support #15

Added first version of MongoDB support

Added first version of MongoDB support #15

Workflow file for this run

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 }}