mirror of
https://github.com/MiSTer-devel/ArcadeDatabase_MiSTer.git
synced 2026-04-19 03:04:02 +00:00
26 lines
443 B
YAML
Executable File
26 lines
443 B
YAML
Executable File
name: Generate DBs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * *'
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions: write-all
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Generate DBs
|
|
run: |
|
|
set -euo pipefail
|
|
git config --global user.email "theypsilon@gmail.com"
|
|
git config --global user.name "The CI/CD Bot"
|
|
./.github/generate_db.py
|