Volunteer api #28
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
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 GitHub Actions / Volunteer App CIInvalid workflow file
|
||
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 |