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 a34d57f commit 4a9ec88Copy full SHA for 4a9ec88
.github/workflows/partials-audit.yml
@@ -33,7 +33,8 @@ jobs:
33
for FILE in $FILES; do
34
# Extract product and file name from the path
35
PRODUCT=$(echo "$FILE" | awk -F'/' '{print $(NF-1)}')
36
- FILENAME=$(basename "$FILE" .mdx)
+ TEMP_PATH=${FILE#*src/content/partials/}
37
+ FILENAME=${TEMP_PATH%.mdx}
38
39
# Construct the individual search strings for product and file
40
SEARCH_PRODUCT="product=\"$PRODUCT\""
0 commit comments