Merge pull request #1712 from GetStream/release/v6.9.0 #753
Workflow file for this run
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: dispatch_workflows | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
jobs: | |
dispatch_nightly: | |
if: github.ref == 'refs/heads/develop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: benc-uk/workflow-dispatch@v121 | |
with: | |
workflow: build_nightly | |
repo: GetStream/flutter-samples | |
token: ${{ secrets.GH_TOKEN }} | |
dispatch_stable: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: benc-uk/workflow-dispatch@v121 | |
with: | |
repo: GetStream/flutter-samples | |
workflow: build | |
token: ${{ secrets.GH_TOKEN }} |