This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Description
here's my config file:
source = ["./example"]
bundle_id = "com.example.app"
apple_id {
username = "[email protected]"
password = "@env:AC_PASSWORD"
}
sign {
application_identity = "Developer ID Application: Example inc."
}
zip {
output_path = "./test.zip"
}
notarize {
path = "./test.zip"
bundle_id = "com.example.app"
staple = true
}
that used to work and all of a sudden, it's uploading test.zip twice.
==> ✏️ Signing files...
Code signing successful
==> 📦 Creating Zip archive...
Zip archive created with signed files
==> 🍎 Notarizing...
Files will be notarized concurrently to optimize queue wait
Path: ./test.zip
Path: ./test.zip
[test.zip] Submitting file for notarization...
commenting the notarize block fixes the issue. that's kinda strange. running version 0.2.3. issue #44 is a bit similar. but our app has 2 dynamic ldflags used that makes each binary unique.