This commit is contained in:
zenobit 2025-04-09 20:21:23 +02:00 committed by GitHub
parent b0da6093ea
commit ea8dfe54ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,10 @@ jobs:
run: |
git status
chmod a+x action
git diff --name-only | grep 'actions/' | cut -d'/' -f2 | xargs -n1 ./action | tee /dev/null
changed_os=$(git diff --name-only | grep 'actions/' | cut -d'/' -f2)
for os in ${changed_os}; do
./action $os | tee /dev/null
done
git config --global user.name "${{ github.repository_owner }}"
git config --global user.email "noreply@github.com"