Skip to content

cleanup and new mkall #4

cleanup and new mkall

cleanup and new mkall #4

Workflow file for this run

name: Automatic rebuild of the db
on: push
jobs:
run:
name: Rebuild db
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build
run: ./mkall
- name: Configure GitHub Authentication
run: |
git config user.name "github-actions"
git config user.email "github-actions@github.com"
- name: Commit and push changes
run: |
date > generated.txt
git add -A
git commit -m "Rebuilt Automatically DB"
git push