mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Fix macOS artifact names and fix jq quotes issue
This commit is contained in:
parent
40ab6f5ce9
commit
7a8bfe4940
3 changed files with 4 additions and 4 deletions
|
@ -97,7 +97,7 @@ done
|
|||
VERSION=${CI_COMMIT_SHORT_SHA}
|
||||
|
||||
if [ -n "$VERSION" ]; then
|
||||
mv nheko.dmg "nheko-${VERSION}_${PLAT}.dmg"
|
||||
mv nheko.dmg "nheko-${VERSION}-${PLAT}.dmg"
|
||||
mkdir -p artifacts
|
||||
cp "nheko-${VERSION}_${PLAT}.dmg" artifacts/
|
||||
cp "nheko-${VERSION}-${PLAT}.dmg" artifacts/
|
||||
fi
|
|
@ -43,7 +43,7 @@ elif [ "$http_code" = "200" ]; then
|
|||
fi
|
||||
|
||||
echo "Getting upload URL..."
|
||||
upload_url="$(echo "$release_json" | jq '."upload_url"')"
|
||||
upload_url="$(echo "$release_json" | jq -r '."upload_url"')"
|
||||
# get rid of the 'hypermedia' stuff at the end and use a 'real' URL
|
||||
echo "Upload URL (hypermedia): ${upload_url}"
|
||||
upload_url="$(echo "$upload_url" | sed 's/{?name,label\}/?name/g')"
|
||||
|
|
|
@ -151,7 +151,7 @@ codesign-macos:
|
|||
- export PATH=/usr/local/opt/qt@5/bin/:${PATH}
|
||||
- ./.ci/macos/notarize.sh
|
||||
after_script:
|
||||
- ./.ci/upload-nightly-gitlab.sh artifacts/nheko-${CI_COMMIT_SHORT_SHA}_${PLAT}.dmg
|
||||
- ./.ci/upload-nightly-gitlab.sh artifacts/nheko-${CI_COMMIT_SHORT_SHA}-${PLAT}.dmg
|
||||
needs:
|
||||
- job: build-macos
|
||||
optional: true # optional since we want to be able to also trigger this job from cirrus ci for apple silicon builds.
|
||||
|
|
Loading…
Reference in a new issue