We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ea3986 commit c43f9efCopy full SHA for c43f9ef
.github/workflows/build-ipa.yml
@@ -338,7 +338,7 @@ jobs:
338
curl -s https://raw.githubusercontent.com/ProStore-iOS/certificates/refs/heads/main/README.md > readme.md
339
340
# Extract signed certificate full names
341
- FULL_NAMES=$(grep '| **✅ Signed** |' readme.md | awk -F'|' '{gsub(/^\s+|\s+$/,"",$2); print $2}')
+ FULL_NAMES=$(grep -F '| **✅ Signed** |' readme.md | awk -F'|' '{gsub(/^\s+|\s+$/,"",$2); print $2}')
342
343
if [ -z "$FULL_NAMES" ]; then
344
echo "No signed certificates found. Skipping signing."
0 commit comments