Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,16 @@ gh release create $newVersion -F $tempFile -t "Version $newVersion"
# remove the tempfile.
rm $tempFile

# build up the xcframework to upload to github
./build.sh

# upload the release
gh release upload $newVersion ${PRODUCT_NAME}.zip
gh release upload $newVersion ${PRODUCT_NAME}.sha256

# SPECIAL CASE: We need to upload Sovran and JSONSafeEncoding to save them time.
gh release upload $newVersion Sovran.zip
gh release upload $newVersion Sovran.sha256
gh release upload $newVersion JSONSafeEncoding.zip
gh release upload $newVersion JSONSafeEncoding.sha256
# Not needed anymore.
## build up the xcframework to upload to github
#./build.sh
#
## upload the release
#gh release upload $newVersion ${PRODUCT_NAME}.zip
#gh release upload $newVersion ${PRODUCT_NAME}.sha256
#
## SPECIAL CASE: We need to upload Sovran and JSONSafeEncoding to save them time.
#gh release upload $newVersion Sovran.zip
#gh release upload $newVersion Sovran.sha256
#gh release upload $newVersion JSONSafeEncoding.zip
#gh release upload $newVersion JSONSafeEncoding.sha256
Loading