Skip to content

Commit

Permalink
Add .env for testflight
Browse files Browse the repository at this point in the history
Added ci prebuild for xcode cloud to create .env file
  • Loading branch information
Alex Risch authored and Alex Risch committed Feb 16, 2024
1 parent 51cf5d1 commit 902a362
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ios/ci_scripts/ci_pre_xcodebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh

echo "Stage: PRE-Xcode Build is activated .... "

echo "XMTP_ENV=${XMTP_ENV}" > "../../.env"
echo "THRID_WEB_CLIENT_ID=${THRID_WEB_CLIENT_ID}" > "../../.env"
echo "AWS_S3_REGION=${AWS_S3_REGION}" > "../../.env"
echo "AWS_S3_BUCKET=${AWS_S3_BUCKET}" > "../../.env"
echo "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" > "../../.env"
echo "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" > "../../.env"

exit 0

0 comments on commit 902a362

Please sign in to comment.