Compare commits
1 Commits
de61ff7e5b
...
2746a4b84b
Author | SHA1 | Date |
---|---|---|
Ian VanSchooten | 2746a4b84b |
|
@ -60,7 +60,23 @@ jobs:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install the appstore connect key material
|
||||||
|
env:
|
||||||
|
AC_API_KEY_SECRET_BASE64: ${{ secrets.AC_API_KEY_SECRET_BASE64 }}
|
||||||
|
run: |
|
||||||
|
AC_API_KEY_SECRET_PATH="$RUNNER_TEMP/key.p8"
|
||||||
|
echo "APP_STORE_CONNECT_API_KEY_KEY_FILEPATH=$AC_API_KEY_SECRET_PATH" >> $GITHUB_ENV
|
||||||
|
echo -n "$AC_API_KEY_SECRET_BASE64" | base64 --decode --output "$AC_API_KEY_SECRET_PATH"
|
||||||
|
|
||||||
|
- name: Place Github token for fastlane match
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
run:
|
||||||
|
echo "MATCH_GIT_BASIC_AUTHORIZATION=$(echo -n "defined-machine:${TOKEN}" | base64)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
run: |
|
run: |
|
||||||
go install golang.org/x/mobile/cmd/gomobile@latest
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
||||||
gomobile init
|
gomobile init
|
||||||
|
@ -68,7 +84,21 @@ jobs:
|
||||||
touch env.sh
|
touch env.sh
|
||||||
|
|
||||||
- name: Build iOS
|
- name: Build iOS
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
cd ios
|
cd ios
|
||||||
pod install
|
pod install
|
||||||
xcodebuild -workspace Runner.xcworkspace -scheme Runner -configuration Release clean archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -archivePath "build/MobileNebula.xcarchive"
|
fastlane checkBuild
|
||||||
|
cd -
|
||||||
|
|
||||||
|
# verify that the github token didn't make it into the output
|
||||||
|
mkdir -p build/app/test-ios
|
||||||
|
cp ios/MobileNebula.ipa build/app/test-ios
|
||||||
|
cd build/app/test-ios
|
||||||
|
unzip MobileNebula.ipa
|
||||||
|
if find . | xargs strings 2>/dev/null | grep -qF "${TOKEN}" ; then
|
||||||
|
echo "Token found in iOS build"
|
||||||
|
exit 1
|
||||||
|
fi
|
|
@ -18,6 +18,19 @@ default_platform(:ios)
|
||||||
platform :ios do
|
platform :ios do
|
||||||
desc "Push a new beta build to TestFlight"
|
desc "Push a new beta build to TestFlight"
|
||||||
|
|
||||||
|
lane :checkBuild do
|
||||||
|
build_app(
|
||||||
|
output_name: "MobileNebula.ipa",
|
||||||
|
workspace: "Runner.xcworkspace",
|
||||||
|
scheme: "Runner",
|
||||||
|
configuration: "Debug",
|
||||||
|
export_method: "development",
|
||||||
|
export_options: {
|
||||||
|
manageAppVersionAndBuildNumber: false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
lane :build do
|
lane :build do
|
||||||
# Do some things like setting up a temporary keystore to host secrets in CI
|
# Do some things like setting up a temporary keystore to host secrets in CI
|
||||||
setup_ci
|
setup_ci
|
||||||
|
|
Loading…
Reference in New Issue