Websocket-Extension/.github/workflows/trigger-site-rebuild.yml
Mathias Westerdahl 3cd0328c2a
Ci build script (#27)
* Added bob.yml

* Added all platforms

* Added macOS builder

* There's no jre on macOS

* jarsigner exists in the jdk

* Added pull_request_target

* Added cron job
2020-12-24 11:56:34 +01:00

23 lines
497 B
YAML

name: Trigger site rebuild
on:
push:
branches:
- 'master'
jobs:
site-rebuild:
runs-on: ubuntu-latest
steps: [
{
name: 'Repository dispatch',
uses: defold/repository-dispatch@1.2.1,
with: {
repo: 'defold/defold.github.io',
token: '${{ secrets.SERVICES_GITHUB_TOKEN }}',
user: 'services@defold.se',
action: 'extension-websocket'
}
}]