Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
luxaritas committed Sep 5, 2024
1 parent 45935b4 commit 1e35021
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ jobs:
fail-fast: false
matrix:
include:
- target: ios
packageType: debugging
- target: ios
packageType: app-store-connect
- target: android
Expand Down Expand Up @@ -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 }}

0 comments on commit 1e35021

Please sign in to comment.