iOS Dapp (production) deploy #3
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
name: iOS Web3Dapp deploy | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: | ||
- closed | ||
jobs: | ||
build: | ||
if: github.event.pull_request.merged == true || github.event == workflow_dispatch | ||
Check failure on line 11 in .github/workflows/release_dapp_ios.yml GitHub Actions / iOS Web3Dapp deployInvalid workflow file
|
||
runs-on: macos-latest-xlarge | ||
steps: | ||
# Checkout the repo | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
# - uses: actions/checkout@v3 | ||
# - uses: ruby/setup-ruby@v1 | ||
# with: | ||
# bundler-cache: true | ||
# Cache | ||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
.build | ||
SourcePackagesCache | ||
DerivedDataCache | ||
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }} | ||
restore-keys: | | ||
${{ runner.os }}-spm- | ||
# # Install Ruby | ||
# - name: Install Ruby | ||
# uses: ruby/setup-ruby@v1 | ||
# with: | ||
# ruby-version: 3.0.2 | ||
# bundler-cache: true | ||
# # Install Fastlane | ||
# - name: Install Fastlane | ||
# run: gem install fastlane | ||
# Install Flutter and Dependencies | ||
- uses: ./.github/actions/dependencies | ||
# Build App | ||
- name: Build App | ||
working-directory: example/dapp | ||
env: | ||
PROJECT_ID: ${{ secrets.DAPP_PROJECT_ID }} | ||
run: | | ||
PUBSPEC_FILE=../../pubspec.yaml | ||
FILE_VALUE=$(echo | grep "^version: " $PUBSPEC_FILE) | ||
PARTS=(${FILE_VALUE//:/ }) | ||
FULL_VERSION=${PARTS[1]} | ||
VERSION_NUMBER=(${FULL_VERSION//-/ }) | ||
flutter build ipa --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --release | ||
# Fastlane | ||
- name: Fastlane | ||
working-directory: example/dapp/ios | ||
env: | ||
APPLE_ID: ${{ secrets.APPLE_ID }} | ||
APPLE_DAPP_ID: ${{ secrets.APPLE_DAPP_ID }} | ||
PROJECT_ID: ${{ secrets.DAPP_PROJECT_ID }} | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }} | ||
APPLE_ISSUER_ID: ${{ secrets.APPLE_ISSUER_ID }} | ||
GH_BASIC_AUTH: ${{ secrets.GH_BASIC_AUTH }} | ||
APP_STORE_CONNECT_KEY: ${{ secrets.APP_STORE_CONNECT_KEY }} | ||
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }} | ||
SLACK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
run: | | ||
PUBSPEC_FILE=../../../pubspec.yaml | ||
FILE_VALUE=$(echo | grep "^version: " $PUBSPEC_FILE) | ||
PARTS=(${FILE_VALUE//:/ }) | ||
FULL_VERSION=${PARTS[1]} | ||
VERSION_NUMBER=(${FULL_VERSION//-/ }) | ||
fastlane release_testflight username:$APPLE_ID token:$GH_BASIC_AUTH project_id:$PROJECT_ID app_id:$APPLE_DAPP_ID app_store_key_id:$APP_STORE_KEY_ID apple_issuer_id:$APPLE_ISSUER_ID app_store_connect_key:"$APP_STORE_CONNECT_KEY" match_git_url:$MATCH_GIT_URL app_version:$VERSION_NUMBER | ||
# Launch locally | ||
# act -j build --container-architecture linux/amd64 -P macos-latest-xlarge=-self-hosted --secret-file .github/workflows/.env.secret -W .github/workflows/release_dapp_ios.yml |