mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
56 lines
No EOL
1.6 KiB
YAML
56 lines
No EOL
1.6 KiB
YAML
name: Database Sync
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "domains/**"
|
|
- "dbgen.js"
|
|
- ".github/workflows/db.yml"
|
|
|
|
jobs:
|
|
generate:
|
|
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: Upload database artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: database
|
|
path: database.json
|
|
|
|
upload:
|
|
needs: generate
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Download database artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: database
|
|
path: database.json
|
|
|
|
- name: Commit and push database.json to database repository
|
|
run: |
|
|
git clone https://github.com/partofmyid/database.git db
|
|
cd db
|
|
git config --global user.name 'github-actions'
|
|
git config --global user.email 'github-actions@github.com'
|
|
mv ../database.json . -f
|
|
git add database.json
|
|
git commit -m 'Update database.json'
|
|
git push
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} |