Skip to content

Deploy WhatTodo app to appstore #2

Deploy WhatTodo app to appstore

Deploy WhatTodo app to appstore #2

Workflow file for this run

name: Deploy WhatTodo app to appstore
on:
workflow_dispatch:
jobs:
deployIos:
runs-on: macos-latest
env:
ASC_JSON_KEY: ${{ secrets.ASC_JSON_KEY }}
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
- name: ⚙️ Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.0"
channel: 'stable'
cache: true
id: flutter
- name: Setup Fastlane
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
working-directory: ios
- name: Setup app store connect
run: echo "$ASC_JSON_KEY" >> ./fastlane/store.json
- name: Build and Deploy to TestFlight
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
run: |
cd ./ios
bundle exec fastlane ios beta