Trigger Netlify Build #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Flujo para ejecutar un build de produccion (rama master) | |
# En Netlify con el propósito de que nuestros contenido se | |
# actualice. | |
name: Trigger Netlify Build | |
on: | |
schedule: | |
# You can use https://crontab.guru to generate the | |
# desired cron sheduled :) | |
- cron: '0 10 * * 1' # At 10:00 on Monday. | |
jobs: | |
build: | |
name: Request Netlify Webhook | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ping | |
run: curl -X POST -d {} https://api.netlify.com/build_hooks/5edca83478745263425750d1 |