BAL-194-GP-NEW EVENT TRACKING (#196) #97
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 source file is part of the CS342 2023 Balance Team Application project | |
# | |
# SPDX-FileCopyrightText: 2023 Stanford University | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Beta Deployment | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
buildandtest: | |
name: Build and Test | |
uses: ./.github/workflows/build-and-test.yml | |
permissions: | |
contents: read | |
secrets: inherit | |
iosapptestflightdeployment: | |
name: iOS App TestFlight Deployment | |
needs: buildandtest | |
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 | |
secrets: inherit | |
with: | |
artifactname: Balance.xcresult | |
fastlanelane: beta | |
setupsigning: true |