This repository was archived by the owner on Mar 10, 2025. It is now read-only.
Update actions/setup-java action to v4 #1648
This file contains hidden or 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: Java CI | |
on: | |
push: | |
branches: | |
- '[7-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- '[7-9]+.[0-9]+.x' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Run Build | |
id: build | |
uses: gradle/gradle-build-action@v2 | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
with: | |
arguments: build -Dgeb.env=chromeHeadless | |
publish: | |
runs-on: ubuntu-latest | |
needs: ['build'] | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Publish Artifacts (repo.grails.org) | |
id: publish | |
uses: gradle/gradle-build-action@v2 | |
if: steps.build.outcome == 'success' && github.event_name == 'push' | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
with: | |
arguments: -Dorg.gradle.internal.publish.checksums.insecure=true publish | |
- name: Build Docs | |
id: docs | |
if: steps.build.outcome == 'success' && github.event_name == 'push' | |
uses: gradle/gradle-build-action@v2 | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
with: | |
arguments: docs:docs | |
- name: Determine docs target repository | |
if: steps.docs.outcome == 'success' && github.event_name == 'push' | |
uses: haya14busa/action-cond@v1 | |
id: docs_target | |
with: | |
cond: ${{ github.repository == 'grails/gorm-hibernate5' }} | |
if_true: "grails/grails-data-mapping" | |
if_false: ${{ github.repository }} | |
- name: Publish to Github Pages | |
if: steps.docs.outcome == 'success' && github.event_name == 'push' | |
uses: micronaut-projects/github-pages-deploy-action@grails | |
env: | |
TARGET_REPOSITORY: ${{ steps.docs_target.outputs.value }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: docs/build/docs | |
DOC_SUB_FOLDER: neo4j | |
DOC_FOLDER: gh-pages | |
COMMIT_EMAIL: behlp@objectcomputing.com | |
COMMIT_NAME: Puneet Behl |