Post

Replies

Boosts

Views

Activity

Swift Package Manager Binary Target
Hello all, I've been using SPM For awhile. previously I put the binary xxx.xcframework to my private repository, but now I want to put it inside my github assets whenever release instead. Below is my previous implementation, which is working great on my private repository. .binaryTarget(name: "xxx", path: "builds/xxx.xcframework") now wanna change to this .binaryTarget(name: "xxx",            url: "https://github.com/nsnull0/xxx/releases/download/1.4.17/xxx.zip",            checksum: "3180c34ec2f0ba3a8d5fe69fe90816368e7a74e6b25d11cb6dd382cf87ae6083") and it always got the error. ✅Fetching https://github.com/nsnull0/xxx ✅Cloning https://github.com/nsnull0/xxx ✅Checking out https://github.com/nsnull0/xxx at dev/spm ✅Removing https://github.com/nsnull0/xxx ❌artifact of binary target 'xxx' faied download: invalid status code 404 1 error ....
3
2
6.1k
Dec ’20