Fix.
All checks were successful
devranta build / Build (push) Successful in 1m4s

This commit is contained in:
retoor 2024-12-03 18:58:28 +01:00
parent a70ae0b04b
commit dcd5361306

View File

@ -22,9 +22,10 @@ jobs:
- name: Test application
run: make test
- name: Push new packages
run: git add .
run: git config --global user.email "bot@molodetz.com"
run: git config --global user.name "bot"
run: git commit -a -m "New build."
run: git push
run: |
git add .
git config --global user.email "bot@molodetz.com"
git config --global user.name "bot"
git commit -a -m "New build."
git push