Deploy to Render #44
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
# Re-build and deploy weekly to sync to github.com/fpsvogel/learn-ruby | |
name: Deploy to Render | |
on: | |
schedule: | |
# Every Tuesday at midnight. See https://crontab.guru | |
- cron: '0 0 * * TUE' | |
jobs: | |
post_to_netlify_deploy_hook: | |
runs-on: ubuntu-latest | |
steps: | |
- run: curl -X POST -d {} ${{ secrets.DEPLOY_HOOK_URL }} |