Skip to content

Commit

Permalink
✨ feat: 新增sitmc下载渠道
Browse files Browse the repository at this point in the history
  • Loading branch information
Amazefcc233 committed May 6, 2024
1 parent 742e0d3 commit 9c9dff5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@ jobs:
--arg apk_sha256 "$apk_sha256" \
--arg apk_url1 "$apk_url" \
--arg apk_url2 "https://mirror.ghproxy.com/$apk_url" \
--arg apk_url3 "https://temp.sitmc.club/prepare-download/v$version/$apk_name" \
--arg ipa_name "$ipa_name" \
--arg ipa_sha256 "$ipa_sha256" \
--arg ipa_url1 "$ipa_url" \
--arg ipa_url2 "https://mirror.ghproxy.com/$ipa_url" \
--arg ipa_url3 "https://temp.sitmc.club/prepare-download/v$version/$ipa_name" \
'
{
"version": $version,
Expand All @@ -68,19 +70,21 @@ jobs:
"downloads": {
"Android": {
"name": $apk_name,
"default": "mirror",
"default": "official",
"sha256": $apk_sha256,
"url": {
"official": $apk_url1,
"official": $apk_url3,
"github": $apk_url1,
"mirror": $apk_url2,
},
},
"iOS": {
"name": $ipa_name,
"default": "mirror",
"default": "official",
"sha256": $ipa_sha256,
"url": {
"official": $ipa_url1,
"official": $ipa_url3,
"github": $ipa_url1,
"mirror": $ipa_url2,
}
}
Expand Down

0 comments on commit 9c9dff5

Please sign in to comment.