Skip to content

Commit

Permalink
Made Autorebuild of db CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnVictoryz committed Nov 19, 2023
1 parent 6937226 commit 66a49e0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/autorebuilddb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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: Rebuid 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: '*'

0 comments on commit 66a49e0

Please sign in to comment.