Context
The build-release-ios.yml workflow was set up in #150 but the first publish attempt (run #25723666162, 2026-05-12) failed with:
cp: ~/Library/MobileDevice/Provisioning Profiles/build_pp.mobileprovision: No such file or directory
Root cause: ~ is not expanded in GitHub Actions YAML env: values — only in shell command words. The job-level env: block sets INSTALLED_PROVISIONING_PROFILE_PATH: ~/Library/... but cp receives the literal string.
Work
Context
The
build-release-ios.ymlworkflow was set up in #150 but the first publish attempt (run #25723666162, 2026-05-12) failed with:Root cause:
~is not expanded in GitHub Actions YAMLenv:values — only in shell command words. The job-levelenv:block setsINSTALLED_PROVISIONING_PROFILE_PATH: ~/Library/...butcpreceives the literal string.Work
INSTALLED_PROVISIONING_PROFILE_PATHfrom the jobenv:block$HOME/Library/MobileDevice/Provisioning Profiles/build_pp.mobileprovisioninlineworkflow_dispatchand verify.ipauploads to TestFlight successfully