Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/DDD-Community/OPeace int…
Browse files Browse the repository at this point in the history
…o develop
  • Loading branch information
Roy-wonji committed Aug 31, 2024
2 parents 05b483d + 8962127 commit 578a3fe
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/uploadTestflight.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: uploadTestFlight

on:
push:
branches: [ "develop" ]

jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v2

- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.0-beta_6


# uses: actions/checkout@v3
# with:
# key: ${{ secrets.MASTER_KEY }}
- name: Install Mise
run: curl https://mise.run | sh
working-directory: ./OPeace
# Corrected indentation for the "Install Tuist" step
- name: Install Tuist
run: mise install [email protected]
working-directory: ./OPeace

- name : mise Use Tuist
run : mise use -g [email protected]



# Corrected indentation for the "Install Fastlane" step
- name: Install Fastlane
run: brew install fastlane
working-directory: ./OPeace

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true #


- name: Execute Tuist tasks
run: |
# tuist clean
tuist install
TUIST_ROOT_DIR=${PWD} tuist generate
working-directory: ./OPeace

- run: fastlane QA
working-directory: ./OPeace
env:
TEAM_ID: ${{ secrets.TEAM_ID }}
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 }}
SLACK_URL_UPLOAD: ${{ secrets.SLACK_URL_UPLOA }}

0 comments on commit 578a3fe

Please sign in to comment.