Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/reusable-build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -638,9 +638,18 @@ jobs:
cp -f THIRDPARTY package/THIRDPARTY || echo "THIRDPARTY file not found (allowed for PR and schedule)"
- name: Build Package
id: uccgen
uses: splunk/[email protected]
with:
version: ${{ steps.BuildVersion.outputs.VERSION }}
run: |
ucc-gen --ta-version ${{ steps.BuildVersion.outputs.VERSION }}
if [ -f package.json ]
then
yarn
if [ -n ${{ steps.BuildVersion.outputs.VERSION }} ]
then
yarn version --new-version ${{ steps.BuildVersion.outputs.VERSION }} --no-git-tag-version
fi
yarn run build
fi
echo "OUTPUT=output/$(ls output/)" >> "$GITHUB_OUTPUT"
- name: Slim Package
id: slim
run: |
Expand Down
Loading