This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
Nightly Push #1091
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: Nightly Push | |
on: | |
schedule: | |
- cron: '0 8 * * *' # every day at 8 am UTC / 1 am PDT / 4 am EDT | |
jobs: | |
deploy-nightly: | |
if: github.repository_owner == 'facebookexperimental' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# config GIT so it can do git push | |
- uses: fregante/setup-git-user@v1 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- run: npm i -g yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn deploy-nightly |