mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
18 lines
343 B
YAML
18 lines
343 B
YAML
name: Auto Deploy
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Check if deployment is needed
|
|
shell: bash
|
|
env:
|
|
BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
|
|
run: ./scripts/check-deploy.sh
|