Merge pull request #142 from Okkonen-GitHub/neovim-src #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "[email protected]" | |
- name: Commit and push changes | |
run: | | |
date > generated.txt | |
git add -A | |
git commit -m "Rebuilt Automatically DB" | |
git push |