Merge branch 'develop' of https://github.com/DDD-Community/OPeace int… #78
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: uploadTestFlight | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Execute Tuist tasks | |
run: | | |
make clean | |
make install | |
# tuist signing decrypt | |
TUIST_ROOT_DIR=${PWD} make generate | |
working-directory: ./OPeace | |
- name: Run Fastlane QA | |
run: fastlane QA | |
working-directory: ./OPeace | |
env: | |
APP_NAME: "OPeace" | |
SCHEME: "OPeace-QA" | |
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_UPLOAD }} |