continued work on OUR #8
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 repo | ||
uses: actions/checkout@v4 | ||
- name: Rebuild db | ||
run: ./mkall | ||
- name: Commit Changes | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Github Actions | ||
author_email: [email protected] | ||
message: 'Rebuilded Automatically the db' | ||
add: '*' |