Bump JsRuntimeHost to pick up V8 x86 fix (#1387) #399
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 master branch update | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
dispatch: | |
name: Dispatch ${{ github.sha }} | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
repo: ['BabylonJS/BabylonReactNative'] | |
steps: | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
repository: ${{ matrix.repo }} | |
event-type: babylonnative-master-update | |
client-payload: '{ "sha": "${{ github.sha }}" }' |