update events #3392
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: Master deployment | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# run at 23:00 UTC+0 daily | |
- cron: '0 23 * * *' | |
jobs: | |
build: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Netlify deployment | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_APP_ID }} | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
run: | | |
yarn | |
yarn build | |
npx netlify-cli deploy --dir=public --prod --message='Deployment for ${GITHUB_REF}' |