feat: separate tabs for comments and stories in favorites screen. (#479) #323
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: Publish (iOS) | |
on: | |
# Allow manual builds of this workflow. | |
workflow_dispatch: {} | |
push: | |
branches: | |
- master | |
# Only build when any of these directories has been modified. | |
paths: | |
- lib/** | |
- pubspec.lock | |
- pubspec.yaml | |
- submodules/** | |
jobs: | |
build_and_publish: | |
runs-on: macos-13 | |
timeout-minutes: 30 | |
env: | |
# Point the `ruby/setup-ruby` action at this Gemfile, so it | |
# caches dependencies for us. | |
BUNDLE_GEMFILE: ${{ github.workspace }}/ios/Gemfile | |
steps: | |
- name: Set XCode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
- name: Check out from git | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- run: submodules/flutter/bin/flutter doctor | |
- run: submodules/flutter/bin/flutter pub get | |
- run: submodules/flutter/bin/dart format --set-exit-if-changed lib test integration_test | |
- run: submodules/flutter/bin/flutter analyze lib test integration_test | |
- run: submodules/flutter/bin/flutter test | |
# Configure ruby according to our .ruby-version | |
- name: Setup ruby & Bundler | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
# Start an ssh-agent that will provide the SSH key from the | |
# SSH_PRIVATE_KEY secret to `fastlane match` | |
- name: Setup SSH key | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}" | |
- name: Build & Publish to TestFlight with Fastlane | |
env: | |
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: cd ios && bundle exec fastlane beta |