Update site #495
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: Update site | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" # Every day at 2am. Modify this as you see fit | |
jobs: | |
DeploySite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy site | |
uses: lwojcik/github-action-deploy-static-site@v1 | |
with: | |
platform: vercel | |
vercel_deploy_hook_url: ${{ secrets.VERCEL_DEPLOY_HOOK_URL }} | |
always_deploy: true | |
# Using Netlify? Configure this action as follows: | |
# platform: netlify | |
# netlify_deploy_hook_url: ${{ secrets.NETLIFY_DEPLOY_HOOK_URL }} | |
# always_deploy: true |