Skip to content

Commit 3b9e0d1

Browse files
committed
[CI] Pass VERSION into common.yml
1 parent 27b9d3d commit 3b9e0d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ jobs:
793793
pushd stream-applications > /dev/null
794794
echo "::notice ::building - stream-applications-release-train"
795795
set -e
796-
$ROOT_DIR/build-folder.sh stream-applications-release-train "install deploy"
796+
VERSION=${{ needs.parameters.outputs.build_version }} $ROOT_DIR/build-folder.sh stream-applications-release-train "install deploy"
797797
popd > /dev/null
798798
- name: 'Configure: Install libxml2-utils'
799799
uses: ./.github/actions/install-libxml2-utils

build-app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pushd "$PROJECT_FOLDER" >/dev/null
8686
pushd "$app" >/dev/null
8787
FOLDER=$(pwd)
8888
echo "Building:$FOLDER"
89-
$SCDIR/build-folder.sh "." "$MAVEN_GOAL -Pintegration"
89+
VERSION=$VERSION $SCDIR/build-folder.sh "." "$MAVEN_GOAL -Pintegration"
9090
if [ "$SKIP_DEPLOY" == "" ] || [ "$SKIP_DEPLOY" == "false" ]; then
9191
for v in $JDKS; do
9292
echo "Pack:$app:$VERSION-jdk$v"

0 commit comments

Comments
 (0)