-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update changelog * update submodule pointer * Update packages CHANGELOG.md * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * fix android build * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * update macos runner * update filename * update release asset name as well * fix mounting * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * specify macos-15 * try macos-13 * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * update provisioning profile * fix identity saving * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * fix backend tor test * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * dynamically retrieve UUID and add test archive build properly cleanup environment remove tag filter on ios build test fix: update path for provisioning profile in decrypt_secrets.sh try explicitly defining UUID update certs update cert encryption update password for importing p12 to keychain * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md
- Loading branch information
Showing
29 changed files
with
134 additions
and
39 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+27 Bytes
(100%)
.github/secrets/match_AppStore_comquietmobile.mobileprovision.gpg
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Test IOS build | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
test-build-ios: | ||
# needs: detox-ios | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [macos-13] | ||
|
||
steps: | ||
- name: "Print OS" | ||
run: echo ${{ matrix.os }} | ||
|
||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
submodules: 'recursive' | ||
lfs: true | ||
|
||
- name: Install gpg | ||
run: brew install gnupg | ||
|
||
- name: Setup XCode | ||
uses: maxim-lobanov/setup-xcode@9a697e2b393340c3cacd97468baa318e4c883d98 # v1.5.1 | ||
with: | ||
xcode-version: '15.2' | ||
|
||
- name: Setup environment | ||
uses: ./.github/actions/setup-env | ||
with: | ||
cachePrefix: "deploy-ios" | ||
bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/mobile,backend-bundle" | ||
|
||
- name: Install pod dependencies | ||
run: | | ||
cd ./packages/mobile/ios | ||
pod install | ||
shell: bash | ||
|
||
- name: Setup provisioning profile | ||
run: ./.github/secrets/decrypt_secrets.sh | ||
env: | ||
IOS_PROFILE_KEY: ${{ secrets.IOS_PROFILE_KEY }} | ||
IOS_CERTIFICATE_KEY: ${{ secrets.IOS_CERTIFICATE_KEY }} | ||
|
||
- name: Build | ||
run: | | ||
cd ./packages/mobile/ios | ||
xcodebuild archive \ | ||
-workspace Quiet.xcworkspace \ | ||
-scheme Quiet \ | ||
-configuration Release \ | ||
-archivePath build/Quiet.xcarchive \ | ||
PROVISIONING_PROFILE="762df280-302c-4336-a56d-c74914169337" \ | ||
CODE_SIGN_IDENTITY="Apple Distribution: A Quiet LLC (CTYKSWN9T4)" | ||
- name: Export .ipa | ||
run: | | ||
cd ./packages/mobile/ios | ||
xcodebuild \ | ||
-exportArchive \ | ||
-archivePath build/Quiet.xcarchive \ | ||
-exportOptionsPlist ci.plist \ | ||
-exportPath build/ | ||
- name: Cleanup environment | ||
if: always() | ||
run: security delete-keychain build.keychain && rm -f ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters