fixing step #77
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: '[ BUILD ] Build Project (Java/Gradle)' | |
on: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
release_build: | |
description: 'toggles an release-build, by default false' | |
type: boolean | |
default: false | |
required: false | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
BUILD_VERSION: '0-SNAPSHOT' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MAVEN_USERNAME: ${{ secrets.MAVENCENTRAL_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVENCENTRAL_PASSWORD }} | |
GITHUBPKG_USERNAME: ${{ secrets.GITHUBPKG_USERNAME }} | |
GITHUBPKG_PASSWORD: ${{ secrets.GITHUBPKG_PASSWORD }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
outputs: | |
maven_artifactId: ${{ steps.maven_artifactId.outputs.artifactId }} | |
maven_groupId: ${{ steps.maven_groupId.outputs.groupId }} | |
maven_version: ${{ steps.maven_version.outputs.version }} | |
cache_key: ${{ steps.cache.outputs.cache_key }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies. | |
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 # v3.1.0 | |
with: | |
add-job-summary-as-pr-comment: on-failure | |
# with: | |
# dependency-graph: generate-and-submit | |
- name: Build with Gradle Wrapper | |
run: ./gradlew build jacocoTestReport | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts | |
path: ~/**/build/libs/*.jar | |
dependency-submission: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies. | |
# https://github.com/gradle/actions/blob/main/docs/dependency-submission.md | |
- name: Generate and submit dependency graph | |
uses: gradle/actions/dependency-submission@v3 | |
env: | |
# Exclude all dependencies that originate solely in the 'buildSrc' or testapp project | |
DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':buildSrc|:cursorpaging-testapp' | |
# Exclude dependencies that are only resolved in test classpaths | |
DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS: '.*[Tt]est(Compile|Runtime)Classpath' | |
with: | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
build-scan-terms-of-use-agree: "yes" |