From 7162c8fbca762b03dac31de46afbd06d936aa84b Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Fri, 6 Mar 2026 13:16:29 +0000 Subject: [PATCH] refactor: rename IPA file for consistent naming in GitHub release --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0171f81f2e..70196a0ee9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1511,10 +1511,13 @@ jobs: -exportOptionsPlist ios/ExportOptions.plist \ -exportPath $RUNNER_TEMP/build + - name: Rename IPA + run: mv ${{ runner.temp }}/build/*.ipa ${{ runner.temp }}/build/oneuptime-on-call-ios-app.ipa + - name: Upload IPA to GitHub Release uses: softprops/action-gh-release@v2 with: - files: ${{ runner.temp }}/build/*.ipa + files: ${{ runner.temp }}/build/oneuptime-on-call-ios-app.ipa token: ${{ secrets.GITHUB_TOKEN }} draft: true prerelease: false