Skip to content

Instantly share code, notes, and snippets.

@danurbanowicz
Created March 27, 2022 15:11
Show Gist options
  • Select an option

  • Save danurbanowicz/2c8e87f8fcd68c6b5b091166d1385a7d to your computer and use it in GitHub Desktop.

Select an option

Save danurbanowicz/2c8e87f8fcd68c6b5b091166d1385a7d to your computer and use it in GitHub Desktop.
Trigger a Netlify deploy each night
name: Deploy
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Nightly deploy
run: curl -X POST -d {} https://api.netlify.com/build_hooks/{ my_build_hook_id }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment