Skip to content

Time.js

Time.js #1976

Workflow file for this run

name: Time.js
on:
workflow_dispatch:
schedule:
- cron: "0 20 * * *"
jobs:
build:
runs-on: macos-latest
environment:
name: e2517Profile
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "20"
- run: npm install
- run: npm run update-readme
env:
EMAIL_GMAIL: ${{ secrets.EMAIL_GMAIL }}
- run: |
git config user.name e2517
git config user.email ${{ secrets.EMAIL_GMAIL }}
git add README.md
git commit -m "[clock] Update README"
git push origin master