Finalizar partidas todos os dias #4
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 15 * * *' # 3 da tarde UTC (Github) / 12 horas Brasil (Eu) / 7 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 |