Skip to content

Fix catalog

Fix catalog #6

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
build-version:
description: 'Version number for the release'
required: true
build-number:
description: 'Build number for the release'
required: true
jobs:
check-formatting:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/shared-workflow.yaml
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 }}
build-number: ${{ github.event.inputs.build-number }}
build-version: ${{ github.event.inputs.build-version }}
secrets:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}

Check failure on line 38 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: 38, Col: 23): Invalid secret, FIREBASE_TOKEN is not defined in the referenced workflow.
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 }}