mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-28 05:35:28 +00:00
* Move netlify preview builds from Azure to Github * Remove checkout * Update secret names
20 lines
600 B
YAML
20 lines
600 B
YAML
name: Netlify
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
trigger_builds:
|
|
name: Trigger netlify build preview
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: Trigger Cast build
|
|
run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_CAST_DEV_BUILD_HOOK }}
|
|
|
|
- name: Trigger Demo build
|
|
run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_DEMO_DEV_BUILD_HOOK }}
|
|
|
|
- name: Trigger Gallery build
|
|
run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_GALLERY_DEV_BUILD_HOOK }}
|