From 60179c12084ce845a39584a186582c339ed7dd19 Mon Sep 17 00:00:00 2001 From: Ace Date: Sat, 3 Jun 2023 18:51:13 +0200 Subject: [PATCH] fixing actions --- .github/workflows/tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0bfb854..3a7fbf7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,16 +44,12 @@ jobs: wget https://raw.githubusercontent.com/aceinnolab/Inkycal/assets/tests/settings.json for f in *.py; do python3 "$f"; done cd .. && cd .. - - - name: Configure Git - run: | + git config --global user.name 'GitHub Actions' git config --global user.email 'actions@github.com' git config --global init.defaultBranch main - - - name: Commit and Push Changes - run: | cd docs/ + git init git add -A git commit -m "Update documentation" cd ..