mirror of
https://github.com/defold/extension-websocket.git
synced 2025-06-27 09:47:44 +02:00
* 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
23 lines
497 B
YAML
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'
|
|
}
|
|
}]
|