Skip to content

feat(db): Add Realm #19

feat(db): Add Realm

feat(db): Add Realm #19

Workflow file for this run

name: README
on:
push:
branches: [main]
paths:
- "data/*"
workflow_dispatch: {}
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update README
run: |
chmod +x scripts/update-data.sh
./scripts/update-data.sh
- name: Commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add README.md
git commit -m "Update README"
git push