mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 18:46:50 +07:00
36 lines
945 B
YAML
36 lines
945 B
YAML
name: Database Sync
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "domains/**"
|
|
- "dbgen.js"
|
|
- ".github/workflows/db.yml"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Generate database
|
|
run: node dbgen.js > database.json
|
|
|
|
- name: Commit changes
|
|
run: |
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
git add database.json
|
|
git commit -m "Update database.json"
|
|
git push
|