Fix GitHub Action (#2) #3
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 Feedbridge based on the Stanford Spezi Template Application project | |
# | |
# SPDX-FileCopyrightText: 2025 Stanford University | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Beta Deployment | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: Beta-Deployment | |
cancel-in-progress: false | |
jobs: | |
buildandtest: | |
name: Build and Test | |
uses: ./.github/workflows/build-and-test.yml | |
permissions: | |
contents: read | |
secrets: inherit | |
staticanaylsis: | |
name: Static Analysis | |
uses: ./.github/workflows/static-analysis.yml | |
permissions: | |
security-events: write | |
actions: read | |
contents: read | |
secrets: inherit | |
iosapptestflightdeployment: | |
name: iOS App TestFlight Deployment | |
needs: buildandtest | |
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 | |
permissions: | |
contents: read | |
with: | |
googleserviceinfoplistpath: 'Feedbridge/Supporting Files/GoogleService-Info.plist' | |
setupsigning: true | |
fastlanelane: beta | |
secrets: inherit | |
deployfirebase: | |
name: Deploy Firebase Project | |
needs: iosapptestflightdeployment | |
uses: StanfordBDHG/.github/.github/workflows/firebase-deploy.yml@v2 | |
permissions: | |
contents: read | |
with: | |
arguments: '--debug' | |
secrets: | |
GOOGLE_APPLICATION_CREDENTIALS_BASE64: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_BASE64 }} |