mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
180 lines
No EOL
6.3 KiB
YAML
180 lines
No EOL
6.3 KiB
YAML
name: Build Release and Upload to TestFlight (iOS)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-14
|
|
timeout-minutes: 180
|
|
outputs:
|
|
new_build_number: ${{ steps.generate_build_number.outputs.build_number }}
|
|
project_version: ${{ steps.determine_marketing_version.outputs.project_version }}
|
|
latest_commit_message: ${{ steps.get_latest_commit_message.outputs.commit_message }}
|
|
env:
|
|
APPLE_ID: ${{ secrets.APPLE_ID }} # Setting the environment variable
|
|
steps:
|
|
- name: Checkout project
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetches all history
|
|
|
|
- name: Specify node version
|
|
uses: actions/setup-node@v2-beta
|
|
with:
|
|
node-version: 18
|
|
|
|
- uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: 15.2
|
|
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
|
|
- name: Install dependencies with Bundler
|
|
run: bundle install
|
|
|
|
- name: Install Fastlane
|
|
run: gem install fastlane
|
|
|
|
- name: Clear Derived Data
|
|
run: bundle exec fastlane ios clear_derived_data_lane
|
|
working-directory: ./ios
|
|
|
|
- name: Install node_modules
|
|
run: npm install
|
|
|
|
- name: Install CocoaPods Dependencies
|
|
run: bundle exec pod install
|
|
working-directory: ./ios
|
|
|
|
- name: Cache CocoaPods Pods
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ios/Pods
|
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
|
|
|
- name: Display release-notes.txt
|
|
run: cat release-notes.txt
|
|
|
|
- name: Get Latest Commit Message
|
|
id: get_latest_commit_message
|
|
run: |
|
|
LATEST_COMMIT_MESSAGE=$(git log -1 --pretty=format:"%s")
|
|
echo "LATEST_COMMIT_MESSAGE=${LATEST_COMMIT_MESSAGE}" >> $GITHUB_ENV
|
|
echo "::set-output name=commit_message::$LATEST_COMMIT_MESSAGE"
|
|
|
|
- name: Set up Git Authentication
|
|
env:
|
|
ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}
|
|
run: |
|
|
git config --global credential.helper 'cache --timeout=3600'
|
|
git config --global http.https://github.com/.extraheader "AUTHORIZATION: basic $(echo -n x-access-token:${ACCESS_TOKEN} | base64)"
|
|
|
|
- name: Create Temporary Keychain
|
|
run: bundle exec fastlane ios create_temp_keychain
|
|
working-directory: ./ios
|
|
env:
|
|
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
|
|
|
|
- name: Setup Provisioning Profiles
|
|
env:
|
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
|
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.GIT_ACCESS_TOKEN }}
|
|
GIT_URL: ${{ secrets.GIT_URL }}
|
|
ITC_TEAM_ID: ${{ secrets.ITC_TEAM_ID }}
|
|
ITC_TEAM_NAME: ${{ secrets.ITC_TEAM_NAME }}
|
|
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
|
|
run: bundle exec fastlane ios setup_provisioning_profiles
|
|
working-directory: ./ios
|
|
|
|
- name: Generate Build Number based on timestamp
|
|
id: generate_build_number
|
|
run: |
|
|
NEW_BUILD_NUMBER=$(date +%s)
|
|
echo "NEW_BUILD_NUMBER=$NEW_BUILD_NUMBER" >> $GITHUB_ENV
|
|
echo "::set-output name=build_number::$NEW_BUILD_NUMBER"
|
|
|
|
- name: Set Build Number
|
|
run: bundle exec fastlane ios increment_build_number_lane
|
|
working-directory: ./ios
|
|
|
|
- name: Determine Marketing Version
|
|
id: determine_marketing_version
|
|
run: |
|
|
MARKETING_VERSION=$(grep MARKETING_VERSION ios/BlueWallet.xcodeproj/project.pbxproj | awk -F '= ' '{print $2}' | tr -d ' ;' | head -1)
|
|
echo "PROJECT_VERSION=$MARKETING_VERSION" >> $GITHUB_ENV
|
|
echo "::set-output name=project_version::$MARKETING_VERSION"
|
|
|
|
- name: Expected IPA file name
|
|
run: |
|
|
echo "IPA file name: BlueWallet.${{env.PROJECT_VERSION}}(${{env.NEW_BUILD_NUMBER}}).ipa"
|
|
|
|
- name: Build App
|
|
run: bundle exec fastlane ios build_app_lane
|
|
working-directory: ./ios
|
|
|
|
- name: Upload IPA as Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: BlueWallet.${{env.PROJECT_VERSION}}(${{env.NEW_BUILD_NUMBER}}).ipa
|
|
path: ./ios/build/BlueWallet.${{env.PROJECT_VERSION}}(${{ env.NEW_BUILD_NUMBER }}).ipa
|
|
|
|
|
|
testflight-upload:
|
|
needs: build
|
|
runs-on: macos-14
|
|
env:
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
NEW_BUILD_NUMBER: ${{ needs.build.outputs.new_build_number }}
|
|
PROJECT_VERSION: ${{ needs.build.outputs.project_version }}
|
|
LATEST_COMMIT_MESSAGE: ${{ needs.build.outputs.latest_commit_message }}
|
|
steps:
|
|
- name: Checkout project
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Cache CocoaPods Pods
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ios/Pods
|
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
|
|
|
|
- name: Cache Ruby Gems
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Install dependencies with Bundler
|
|
run: |
|
|
bundle config path vendor/bundle
|
|
bundle install --jobs 4 --retry 3
|
|
|
|
- name: Download IPA from Artifact
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: BlueWallet.${{needs.build.outputs.project_version}}(${{needs.build.outputs.new_build_number}}).ipa
|
|
path: ./ios/build
|
|
|
|
- name: Create App Store Connect API Key JSON
|
|
run: echo '${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}' > ./ios/appstore_api_key.json
|
|
|
|
- name: Upload to TestFlight
|
|
env:
|
|
APP_STORE_CONNECT_API_KEY_PATH: $(pwd)/ios/appstore_api_key.p8
|
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
|
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.GIT_ACCESS_TOKEN }}
|
|
GIT_URL: ${{ secrets.GIT_URL }}
|
|
ITC_TEAM_ID: ${{ secrets.ITC_TEAM_ID }}
|
|
ITC_TEAM_NAME: ${{ secrets.ITC_TEAM_NAME }}
|
|
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
|
|
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
|
|
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
|
|
run: bundle exec fastlane ios upload_to_testflight_lane
|
|
working-directory: ./ios |