We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dbfde4 commit c32d633Copy full SHA for c32d633
.github/workflows/publish-pack.yml
@@ -41,10 +41,11 @@ jobs:
41
git config user.name "github-actions[bot]"
42
git config user.email "github-actions[bot]@users.noreply.github.com"
43
44
- # Get list of all remote branches
+ # Get list of all remote branches (including CMSIS-Pack)
45
branches=$(git branch -r | grep -v HEAD | sed 's/origin\///' | sort -u)
46
47
echo "Found branches: $branches"
48
+ echo ""
49
50
for branch in $branches; do
51
echo "Processing branch: $branch"
@@ -65,7 +66,10 @@ jobs:
65
66
else
67
echo "- No changes on branch: $branch"
68
fi
69
70
done
71
+
72
+ echo "✓ All branches processed successfully (including CMSIS-Pack)"
73
74
- name: Trigger cmake-single-platform workflow
75
run: |
0 commit comments