This repository was archived by the owner on Apr 8, 2025. It is now read-only.
Updating for grails-publish plugin change #589
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: | |
| - '[3-9]+.[0-9]+.x' | |
| pull_request: | |
| branches: | |
| - '[3-9]+.[0-9]+.x' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| WORKSPACE: ${{ github.workspace }} | |
| GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | |
| steps: | |
| - name: Print Dispatch Information | |
| if: github.event_name == 'workflow_dispatch' | |
| env: | |
| DISPATCH_INFORMATION: ${{ github.event.inputs.message }} | |
| run: echo $DISPATCH_INFORMATION | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'liberica' | |
| java-version: 17 | |
| - name: Run Tests | |
| if: github.event_name == 'pull_request' | |
| id: tests | |
| uses: gradle/gradle-build-action@v3 | |
| with: | |
| arguments: check --refresh-dependencies | |
| 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 }} | |
| - name: Run Build | |
| if: github.event_name == 'push' | |
| id: build | |
| uses: gradle/gradle-build-action@v3 | |
| 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 --refresh-dependencies | |
| - name: Publish Test Report | |
| if: steps.build.outcome == 'failure' || steps.tests.outcome == 'failure' | |
| uses: scacap/action-surefire-report@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| report_paths: '**/build/test-results/test/TEST-*.xml' | |
| - name: Publish to repo.grails.org | |
| uses: gradle/gradle-build-action@v3 | |
| if: steps.build.outcome == 'success' && github.event_name == 'push' | |
| env: | |
| MAVEN_PUBLISH_USERNAME: ${{ secrets.MAVEN_PUBLISH_USERNAME }} | |
| MAVEN_PUBLISH_PASSWORD: ${{ secrets.MAVEN_PUBLISH_PASSWORD }} | |
| MAVEN_PUBLISH_URL: ${{ secrets.MAVEN_PUBLISH_SNAPSHOT_URL }} | |
| 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: publish --refresh-dependencies | |
| - name: Generate Documentation | |
| id: docs | |
| uses: gradle/gradle-build-action@v3 | |
| if: success() && github.event_name == 'push' | |
| with: | |
| arguments: docs | |
| 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 }} | |
| - name: Publish to Github Pages | |
| if: steps.publish.outcome == 'success' && github.event_name == 'push' | |
| uses: micronaut-projects/github-pages-deploy-action@grails | |
| env: | |
| TARGET_REPOSITORY: ${{ github.repository }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| BRANCH: gh-pages | |
| FOLDER: build/docs | |
| DOC_FOLDER: gh-pages | |
| COMMIT_EMAIL: '[email protected]' | |
| COMMIT_NAME: 'grails-build' |