I'm currently encountering the same issue #142 running the following configuration: - Github Action `runs-on: macos-13` - orchestrating the release with fastlane - running a tiny lane: ``` lane :dmg do Dir.chdir("../") do sh("npm install -g appdmg") sh("appdmg fastlane/dmg.json MyApp.dmg") end end ``` ``` Error: Command failed: hdiutil detach /Volumes/MyApp hdiutil: detach failed - No such file or directory ``` This issue has also been reported on in the thread by me and Othyn: https://github.com/LinusU/node-appdmg/issues/142#issuecomment-1617089716 I haven't found a way to re-open issue so I'm opening this one.