Skip to content

Add a new configuration that will format the SQL (#89) #10

Add a new configuration that will format the SQL (#89)

Add a new configuration that will format the SQL (#89) #10

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags-ignore:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: git fetch --prune --unshallow --tags
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build
- name: Upload snapshot artifacts to Sonatype
id: upload_snapshot_artifacts
env:
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_KEY: ${{ secrets.GPG_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository