Skip to content

Firebase setup

Firebase setup #2

Workflow file for this run

name: Volunteer App CI
on:
pull_request:
branches:
- dev
paths:
- 'packages/volunteerapp/**'
workflow_dispatch:
inputs:
changelog:
description: 'Changelog for this release'
required: true
jobs:
check-formatting:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/shared-workflow.yaml

Check failure on line 18 in .github/workflows/volunteerapp.yaml

View workflow run for this annotation

GitHub Actions / Volunteer App CI

Invalid workflow file

The workflow is not valid. .github/workflows/volunteerapp.yaml (Line: 18, Col: 11): Secret FIREBASE_TOKEN is required, but not provided while calling. .github/workflows/volunteerapp.yaml (Line: 18, Col: 11): Secret FIREBASE_APP_ID is required, but not provided while calling.
with:
package-name: volunteerapp
android-build:
if: github.event_name == 'workflow_dispatch'
uses: ./.github/workflows/shared-workflow.yaml
with:
package-name: volunteerapp
android-build: true
changelog: ${{ github.event.inputs.changelog }}
secrets:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }}
ios-build:
if: github.event_name == 'workflow_dispatch'
uses: ./.github/workflows/shared-workflow.yaml
with:
package-name: volunteerapp
ios-build: true
changelog: ${{ github.event.inputs.changelog }}
secrets:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }}