Finalizar partidas todos os dias #385
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: Finalizar partidas todos os dias | |
on: | |
schedule: | |
- cron: '0 11 * * *' # 11 da manhã UTC (Github) / 9 da manhã Brasil (Eu) / 4 horas Pacific Time (Firebase) | |
jobs: | |
executar-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout do repositório | |
uses: actions/checkout@v2 | |
- name: Configurar Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Instalar dependências | |
run: npm install | |
- name: Executar Script | |
run: node ./scripts/finish-matches.js |