Skip to content

Commit 0cd3863

Browse files
committed
Fix missing parameters
1 parent 30a8ae0 commit 0cd3863

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,11 @@ jobs:
6161
./mvnw clean install -B -Drevision=${REVISION} -Dchangelist=${CHANGELIST} -DskipTests=true
6262
6363
- name: Package
64-
65-
run: ./mvnw package -pl ugs-platform/application -P create-macosx-x64-package,create-macosx-aarch64-package -DskipTests=true -Drevision=${REVISION} -Dchangelist=${CHANGELIST}
64+
run: |
65+
export REVISION=${GITHUB_REF_NAME:1}
66+
export CHANGELIST=""
67+
echo "Building version ${REVISION}${CHANGELIST}"
68+
./mvnw package -pl ugs-platform/application -P create-macosx-x64-package,create-macosx-aarch64-package -DskipTests=true -Drevision=${REVISION} -Dchangelist=${CHANGELIST}
6669
6770
# https://github.com/marketplace/actions/upload-to-github-release
6871
- name: Upload binaries to snapshot release

0 commit comments

Comments
 (0)