Skip to content

Initial Setup (#1)

Initial Setup (#1) #2

#
# This source file is part of the Example Application based on the Stanford Spezi Template 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:
security-events: write
actions: read
iosapptestflightdeployment:
name: iOS App TestFlight Deployment
needs: buildandtest
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
secrets: inherit
with:
googleserviceinfoplistpath: 'ExampleApplication/Supporting Files/GoogleService-Info.plist'

Check failure on line 30 in .github/workflows/beta-deployment.yml

View workflow run for this annotation

GitHub Actions / Beta Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/beta-deployment.yml (Line: 30, Col: 35): Invalid input, googleserviceinfoplistpath is not defined in the referenced workflow.
setupsigning: true
fastlanelane: beta
deployfirebase:
name: Deploy Firebase Project
needs: iosapptestflightdeployment
uses: StanfordBDHG/.github/.github/workflows/firebase-deploy.yml@v2
with:
arguments: '--debug'
secrets:
GOOGLE_APPLICATION_CREDENTIALS_BASE64: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_BASE64 }}