This commit is contained in:
2025-09-15 10:49:59 +02:00
parent 2e9166220b
commit 81bd61a416
2 changed files with 47 additions and 16 deletions

View File

@@ -0,0 +1,31 @@
name: Gradle Build on PR
on:
workflow_call:
inputs:
JAVA_VERSION:
default: 17
description: Java version to use
required: false
type: string
BUILD_OPTION:
default: ""
description: Gradle build option
required: false
type: string
jobs:
gradle-build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ inputs.JAVA_VERSION }}
- name: Run Gradle Build
run: ./gradlew build ${{ inputs.BUILD_OPTION }}

View File

@@ -118,20 +118,20 @@ jobs:
echo "No changes to commit" echo "No changes to commit"
fi fi
finalise-publish-artifact: # finalise-publish-artifact:
needs: release # needs: release
if: inputs.RELEASE_TYPE == 'catalog' || inputs.RELEASE_TYPE == 'library' || inputs.RELEASE_TYPE == 'plugin' # if: inputs.RELEASE_TYPE == 'catalog' || inputs.RELEASE_TYPE == 'library' || inputs.RELEASE_TYPE == 'plugin'
uses: aura-ascend/common-workflows/.gitea/workflows/publish-artifact.yaml@master # uses: aura-ascend/common-workflows/.gitea/workflows/publish-artifact.yaml@master
with: # with:
JAVA_VERSION: ${{ inputs.JAVA_VERSION }} # JAVA_VERSION: ${{ inputs.JAVA_VERSION }}
BRANCH_REFERENCE: "v${{ needs.release.outputs.release-version }}" # BRANCH_REFERENCE: "v${{ needs.release.outputs.release-version }}"
secrets: inherit # secrets: inherit
finalise-publish-container: # finalise-publish-container:
needs: release # needs: release
if: inputs.RELEASE_TYPE == 'service' # if: inputs.RELEASE_TYPE == 'service'
uses: aura-ascend/common-workflows/.gitea/workflows/publish-container.yaml@master # uses: aura-ascend/common-workflows/.gitea/workflows/publish-container.yaml@master
with: # with:
JAVA_VERSION: ${{ inputs.JAVA_VERSION }} # JAVA_VERSION: ${{ inputs.JAVA_VERSION }}
PROJECT_VERSION: "v${{ needs.release.outputs.release-version }}" # PROJECT_VERSION: "v${{ needs.release.outputs.release-version }}"
secrets: inherit # secrets: inherit