diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 717d49f..3e89888 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,8 +99,6 @@ jobs: fail-fast: false matrix: include: - - target: ios - packageType: debugging - target: ios packageType: app-store-connect - target: android @@ -189,3 +187,17 @@ jobs: --packageType="${{ matrix.packageType }}" env: PARALLEL_BUILD: true + + - name: List output + if: ${{ matrix.target == 'ios' }} + run: ls platforms/ios/build/Release-iphoneos + # Due to licensed components, we're avoiding distribution this way. If we decide we do want to + # do that in the future, eg to be able to directly download builds for testing without uploading + # to app stores, we'd need to make sure we add a license file with the downloads + #- name: Encrypt build + # run: gpg --output release-${{ matrix.target }} --symmetric --passphrase ${{ secrets.ARTIFACT_ENCRYPTION_KEY }} --batch ${{ matrix.target == 'android' && 'platforms/android/app/build/outputs/bundle/release/app-release.aab' || 'platforms/ios/build/Release-iphoneos' }} + #- name: Upload build + # uses: actions/upload-artifact@v4 + # with: + # name: release-${{ matrix.target }} + # path: ./release-${{ matrix.target }} \ No newline at end of file