Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update workflow for demo app upload #2742

Merged
merged 2 commits into from
Jan 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/upload-demo-app-on-firebase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ name: Upload Demo App on Firebase
on:
workflow_dispatch:
inputs:
label:
description: 'Run tests and upload demo app on Firebase'
required: true
default: 'firebase-test-on'
type: string
tester_groups:
description: 'Comma-separated list of tester groups'
required: true
Expand All @@ -16,11 +11,18 @@ on:

pull_request:
types: [ synchronize, opened, reopened, edited, closed, labeled ]
branches:
- 'development'
- 'master'

concurrency:
group: firebase-${{ github.ref }}
cancel-in-progress: true

jobs:
upload_demo_app_on_firebase:
runs-on: macos-latest
if: github.event.label.name == github.event.inputs.label
if: github.event.label.name == 'firebase-test-on'
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading