Deploy main to production every 24 hours #33
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
name: Deploy main to production every 24 hours | |
on: | |
schedule: | |
- cron: "0 */24 * * *" | |
jobs: | |
cron: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy main to production | |
uses: wei/curl@master | |
with: | |
args: ${{ vars.DEPLOY_HOOK_URL }} | |