Skip to content

Commit

Permalink
ci: Allow workflow to be triggered manually
Browse files Browse the repository at this point in the history
Added a condition to allow the workflow to be triggered manually in addition to the existing label trigger.
  • Loading branch information
niyajali committed Jan 14, 2025
1 parent 53f60d8 commit a002785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upload-demo-app-on-firebase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:
jobs:
upload_demo_app_on_firebase:
runs-on: macos-latest
if: github.event.label.name == 'firebase-test-on'
if: github.event.label.name == 'firebase-test-on' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit a002785

Please sign in to comment.