Skip to content

Commit 425c36a

Browse files
feat: group uipcli outputs (#26)
Add groups for outputs from uipcli pack command. This will give each project an expandable section in the GitHub Actions console/log for viewing any uipcli outputs
1 parent 09dff17 commit 425c36a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ runs:
5959
repoUrl="${{ github.server_url }}/${{ github.repository }}"
6060
6161
while IFS= read -r p; do
62+
echo "::group::uipcli output for packing project: $p"
6263
uipcli package pack "$p" \
6364
--output "$packages" \
6465
--libraryOrchestratorUrl "${{ inputs.orchestratorUrl }}" \
@@ -76,6 +77,8 @@ runs:
7677
--repositoryBranch "${{ github.ref_name }}" \
7778
--repositoryType git
7879
80+
echo "::endgroup::"
81+
7982
if [ $? -ne 0 ]; then
8083
echo "Pack Failed"
8184
exit 1

0 commit comments

Comments
 (0)