Skip to content

Volunteer api

Volunteer api #28

Workflow file for this run

name: Volunteer App CI
on:
pull_request:
branches:
- dev
paths:
- 'packages/volunteerapp/**'
workflow_dispatch:
inputs:
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
build-number: ${{ github.event.inputs.build-number }}
build-version: ${{ github.event.inputs.build-version }}
secrets:
CREDENTIAL_FILE_CONTENT: ${{ secrets.CREDENTIAL_FILE_CONTENT }}

Check failure on line 34 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: 34, Col: 32): Invalid secret, CREDENTIAL_FILE_CONTENT is not defined in the referenced workflow. .github/workflows/volunteerapp.yaml (Line: 35, Col: 24): Invalid secret, FIREBASE_APP_ID 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