Skip to content

Fixed HowLongToBeat retrieval, along with images #1116

Fixed HowLongToBeat retrieval, along with images

Fixed HowLongToBeat retrieval, along with images #1116

Workflow file for this run

name: Auto update DB
on:
push:
schedule:
- cron: '0 1 * * *'
jobs:
run:
name: Update games DB
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 21.x
- name: Install dependencies
run: npm install
- name: Run the update
run: npm run update
- name: Download covers
run: npm run images
- name: Commit changes
uses: EndBug/add-and-commit@v5
with:
author_name: github-actions
author_email: actions@github.com
message: 'Updated GamePass Games'
add: '*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}