Skip to content

Auto-Deploy

Auto-Deploy #36

Workflow file for this run

name: "Auto-Deploy"
on:
workflow_dispatch:
schedule:
- cron: '0 0 27 * *'
jobs:
deploy:
name: 'Auto Deploy'
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Deploy Stage
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.NETLIFY_DEPLOY_HOOK }}
method: 'POST'