build(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /chat-backend #465
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
# This workflow verify the code version is compatible with the one in the stores | |
name: Verify Code Version | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify-ios-app: | |
name: Verify iOS App | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get changed files in the chat-application folder | |
id: changed-files-application | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: chat-application/** | |
- name: Setup fastlane | |
if: steps.changed-files-application.outputs.any_changed == 'true' | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
working-directory: chat-application/ios | |
- name: Verify app version in App Store | |
if: steps.changed-files-application.outputs.any_changed == 'true' | |
working-directory: chat-application/ios | |
run: bundle exec fastlane verify_version | |
env: | |
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 }} | |
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} |