[flutter_webrtc] Update libwebrtc to m114 version #1033
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: Release | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'flutter-tizen' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Dry run on pull request | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
./tools/tools_runner.sh publish \ | |
--all-changed \ | |
--pub-publish-flags=--dry-run \ | |
--base-sha=HEAD~ | |
- name: Wait on all tests | |
if: ${{ github.event_name == 'push' }} | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.sha }} | |
running-workflow-name: 'release' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 180 # seconds | |
allowed-conclusions: success | |
verbose: false | |
- name: Publish packages | |
if: ${{ github.event_name == 'push' }} | |
timeout-minutes: 5 | |
env: | |
PUB_CREDENTIALS: ${{ secrets.PUB_CREDENTIALS }} | |
run: | | |
./tools/tools_runner.sh publish \ | |
--all-changed \ | |
--base-sha=HEAD~ \ | |
--skip-confirmation |