Skip to content

Commit 60a026a

Browse files
committed
Update ci.yml
1 parent aaf4ed7 commit 60a026a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ jobs:
160160
--arg version "$version" \
161161
--arg download "https://github.com/LiliaFramework/Modules/raw/refs/heads/gh-pages/${dir}.zip" \
162162
--arg source "https://liliaframework.github.io/Modules/${dir}.html" \
163-
--arg public_uniqueID "$dir" \
163+
--arg uniqueID "$dir" \
164164
--argjson features "$feat" \
165165
--argjson workshop "$work" \
166-
'. += [{name:$name,uniqueID:$uniqueID,author:$author,discord:$discord,description:$desc,version:$version,download:$download,source:$source,public_uniqueID:$public_uniqueID,features:$features,workshop:$workshop}]' modules_data.json > tmp.json
166+
'. += [{name:$name,uniqueID:$uniqueID,author:$author,discord:$discord,description:$desc,version:$version,download:$download,source:$source,uniqueID:$uniqueID,features:$features,workshop:$workshop}]' modules_data.json > tmp.json
167167
mv tmp.json modules_data.json
168168
done
169169
- name: zip-modules
@@ -218,7 +218,7 @@ jobs:
218218
for d in extracted_*; do
219219
[ -d "$d" ] || continue
220220
mod=${d#extracted_}
221-
name=$(jq -r --arg id "$mod" '.[] | select(.public_uniqueID==$id) | .name' documentation/modules.json || echo '')
221+
name=$(jq -r --arg id "$mod" '.[] | select(.uniqueID==$id) | .name' documentation/modules.json || echo '')
222222
if [ -n "$name" ]; then
223223
folder=$(echo "$name" | tr '[:upper:]' '[:lower:]' | sed -E 's/[^a-z0-9]+/_/g' | sed -E 's/^_+|_+$//g')
224224
else

0 commit comments

Comments
 (0)