File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments