diff --git a/.gitea/workflows/package.yaml b/.gitea/workflows/package.yaml index ff37609..139845d 100644 --- a/.gitea/workflows/package.yaml +++ b/.gitea/workflows/package.yaml @@ -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