Add step to upload IPA file in build workflow

This commit is contained in:
2025-12-02 17:47:05 +09:00
committed by GitHub
parent 0d628e6605
commit 4b92685094

View File

@@ -112,3 +112,11 @@ jobs:
name: ios-build
path: artifacts/
retention-days: 30
- name: Upload IPA file
if: success() && exists('build/ipa/EnvSensorReader.ipa')
uses: actions/upload-artifact@v4
with:
name: ipa
path: build/ipa/EnvSensorReader.ipa
retention-days: 30