We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10b54c commit d8aee13Copy full SHA for d8aee13
.github/workflows/reusable-build-test-release.yml
@@ -638,9 +638,19 @@ jobs:
638
cp -f THIRDPARTY package/THIRDPARTY || echo "THIRDPARTY file not found (allowed for PR and schedule)"
639
- name: Build Package
640
id: uccgen
641
- uses: splunk/[email protected]
642
- with:
643
- version: ${{ steps.BuildVersion.outputs.VERSION }}
+ run: |
+ ucc-gen --ta-version ${{ steps.BuildVersion.outputs.VERSION }}
+ if [ -f package.json ]
644
+ then
645
+ yarn
646
+ if [ ! -z ${{ steps.BuildVersion.outputs.VERSION }} ]
647
648
+ yarn version --new-version ${{ steps.BuildVersion.outputs.VERSION }} --no-git-tag-version
649
+ fi
650
+ yarn run build
651
652
+ OUTPUT=output/$(ls output/)
653
+ echo "result=$(echo $OUTPUT)" >> $GITHUB_OUTPUT
654
- name: Slim Package
655
id: slim
656
run: |
0 commit comments