Skip to content

Merge pull request #252 from depromeet/fix/#244-ci-failure-xcconfig-add #14

Merge pull request #252 from depromeet/fix/#244-ci-failure-xcconfig-add

Merge pull request #252 from depromeet/fix/#244-ci-failure-xcconfig-add #14

Workflow file for this run

name: Bibbi
on:
push:
branches:
- develop
- feature/*
tags:
- "v*"
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Tuist Clean Command
uses: tuist/[email protected]
with:
command: 'clean'
arguments: ''
- name: Tuist Fetch Command
uses: tuist/[email protected]
with:
command: 'fetch'
arguments: ''
- name: Tuist Generate Command
uses: tuist/[email protected]
with:
command: 'generate'
arguments: ''
- name: xcode build 🛠️
run: xcodebuild clean build -workspace "Bibbi.xcworkspace" -scheme "App" -destination "platform=iOS Simulator,name=iPhone 13 mini,OS=latest"
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# deploy:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: fastlane deploy start
# run: echo "fastlane deploy start"
# env:
# APP_STORE_CONNECT_API_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }}
# APP_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_ISSUER_ID }}
# APP_STORE_CONNECT_API_KEY_CONTENT: ${{ secrets.APP_STORE_CONNECT_API_KEY_CONTENT }}