generated from StanfordBDHG/TemplateApplication
-
-
Notifications
You must be signed in to change notification settings - Fork 29
47 lines (44 loc) · 1.16 KB
/
beta-deployment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# This source file is part of 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: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
# secrets: inherit
# with:
# setupsigning: true
# fastlanelane: beta
deployfirebase:
name: Deploy Firebase Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '17'
- name: Install Firebase CLI Tools
run: npm install -g firebase-tools
- name: Deploy to Firebase
run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}