mirror of
https://github.com/directus/directus.git
synced 2026-01-23 18:18:03 -05:00
22 lines
419 B
YAML
22 lines
419 B
YAML
name: Deploy Website / Docs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '59 23 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: satak/webrequest-action@master
|
|
with:
|
|
url: ${{ secrets.BUILD_HOOK_WEBSITE }}
|
|
method: POST
|
|
|
|
- uses: satak/webrequest-action@master
|
|
with:
|
|
url: ${{ secrets.BUILD_HOOK_DOCS }}
|
|
method: POST
|