Skip to content

Commit a71d6c9

Browse files
committed
debug
Signed-off-by: rooot <hey@rooot.gay>
1 parent 6ec45fe commit a71d6c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,9 @@ runs:
211211
echo "cloning ios geode"
212212
git clone https://github.com/geode-catgirls/geode -b nightly "${{ github.workspace }}/geode-sdk-clone"
213213
mkdir -p "${{ github.workspace }}/geode-sdk-clone/bin"
214-
dl_url=$(curl -s https://api.github.com/repos/geode-catgirls/geode/releases | jq '.[] | select(.tag_name=="nightly").assets[] | select(.name|endswith("-ios.zip")).browser_download_url' -r)
214+
wah=$(curl -s https://api.github.com/repos/geode-catgirls/geode/releases)
215+
echo "wah $wah"
216+
dl_url=$(echo "$wah" | jq '.[] | select(.tag_name=="nightly").assets[] | select(.name|endswith("-ios.zip")).browser_download_url' -r)
215217
echo "nightly dl url: $dl_url"
216218
curl -L "$dl_url" -o "geode-ios.zip" && unzip "geode-ios.zip" -d "${{ github.workspace }}/geode-sdk-clone/bin/nightly" && rm "geode-ios.zip"
217219
fi

0 commit comments

Comments
 (0)