Deployment #15
Workflow file for this run
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 Stanford Biodesign Digital Health ENGAGE-HF open-source project | |
# | |
# SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md) | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Deployment | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: | | |
The GitHub deployment environment. | |
required: true | |
default: 'development' | |
type: choice | |
options: | |
- development | |
- staging | |
- production | |
workflow_call: | |
inputs: | |
environment: | |
description: | | |
The GitHub deployment environment. | |
required: false | |
type: string | |
default: development | |
concurrency: | |
group: deployment | |
cancel-in-progress: false | |
jobs: | |
determineenvironment: | |
name: Determine Environment | |
runs-on: ubuntu-latest | |
outputs: | |
environment: ${{ steps.set-env.outputs.environment }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Determine Environment | |
id: set-env | |
run: | | |
if [[ -z "${{ inputs.environment }}" ]]; then | |
echo "environment=staging" >> $GITHUB_OUTPUT | |
else | |
echo "environment=${{ inputs.environment }}" >> $GITHUB_OUTPUT | |
fi | |
vars: | |
name: Inject Environment Variables In Deployment Workflow | |
needs: determineenvironment | |
runs-on: ubuntu-latest | |
environment: ${{ needs.determineenvironment.outputs.environment }} | |
outputs: | |
FIREBASE_PROJECT_ID: ${{ vars.FIREBASE_PROJECT_ID }} | |
steps: | |
- run: | | |
echo "Injecting Environment Variables In Deployment Workflow: ${{ vars.FIREBASE_PROJECT_ID }}" | |
buildandtest: | |
name: Build and Test | |
needs: determineenvironment | |
uses: ./.github/workflows/build-and-test.yml | |
permissions: | |
contents: read | |
checks: write | |
secrets: inherit | |
deployfirebase: | |
name: Deploy Firebase Project | |
needs: [buildandtest, determineenvironment, vars] | |
uses: StanfordBDHG/.github/.github/workflows/firebase-deploy.yml@envFirebase2 | |
permissions: | |
contents: read | |
with: | |
customcommand: 'npm ci' | |
environment: ${{ needs.determineenvironment.outputs.environment }} | |
arguments: '--project ${{ needs.vars.outputs.FIREBASE_PROJECT_ID }}' | |
secrets: | |
GOOGLE_APPLICATION_CREDENTIALS_BASE64: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_BASE64 }} | |
ENV_FILE: | | |
VITE_PUBLIC_FIREBASE_API_KEY='${{ secrets.VITE_PUBLIC_FIREBASE_API_KEY }}' | |
VITE_PUBLIC_FIREBASE_AUTH_DOMAIN='${{ secrets.VITE_PUBLIC_FIREBASE_AUTH_DOMAIN }}' | |
VITE_PUBLIC_FIREBASE_PROJECT_ID='${{ secrets.VITE_PUBLIC_FIREBASE_PROJECT_ID }}' | |
VITE_PUBLIC_FIREBASE_STORAGE_BUCKET='${{ secrets.VITE_PUBLIC_FIREBASE_STORAGE_BUCKET }}' | |
VITE_PUBLIC_FIREBASE_MESSAGING_SENDER_ID='${{ secrets.VITE_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}' | |
VITE_PUBLIC_FIREBASE_APP_ID='${{ secrets.VITE_PUBLIC_FIREBASE_APP_ID }}' |