Merge pull request #137 from graphql-java/dependabot/github_actions/g… #51
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: Master Build and Publish | |
# For master push: Builds and publishes the development version to bintray/maven | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
buildAndPublish: | |
runs-on: ubuntu-latest | |
env: | |
MAVEN_CENTRAL_USER: ${{ secrets.MAVEN_CENTRAL_USER }} | |
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | |
MAVEN_CENTRAL_PGP_KEY: ${{ secrets.MAVEN_CENTRAL_PGP_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'corretto' | |
- name: build test and publish | |
run: ./gradlew assemble && ./gradlew check --info && ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository -x check --info --stacktrace |