separate push

This commit is contained in:
zenobit 2025-04-01 17:14:19 +02:00 committed by GitHub
parent a31da40fa5
commit 42b352f979
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 4 deletions

View File

@ -23,8 +23,12 @@ jobs:
./action | tee /dev/null
git config --global user.name "${{ github.repository_owner }}"
git config --global user.email "noreply@github.com"
#git add .
git add --all
git commit -m "update supported"
git push
- name: push
run: |
git status
git add . || echo "add . failed"
git add --all || echo "add --all failed"
git commit -m "update supported" || echo "commit failed"
git push || echo "push failed"
git status