Update dynamo.yml

This commit is contained in:
zenobit 2025-04-10 04:22:40 +02:00 committed by GitHub
parent b2430fdea5
commit f766359d3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -63,10 +63,20 @@ jobs:
#./quickget --check ${{ matrix.file }} | tee results/${{ matrix.file }}.txt
chmod a+x action
./action ${{ matrix.file }} | tee results/${{ matrix.file }}.txt
sort -u < TODO/all | tee TODO/all
git config --global user.name "${{ github.repository_owner }}"
git config --global user.email "noreply@github.com"
#if grep -vqE '^(PASS:|SKIP:)' results/${{ matrix.file }}.txt; then
#grep -vE '^(PASS:|SKIP:)' results/${{ matrix.file }}.txt >> $GITHUB_STEP_SUMMARY
#exit 1
#fi
git status
git add . || echo "add . failed"
git add TODO/all || echo "add TODO/all failed"
git add --all || echo "add --all failed"
git commit -m "update supported" || echo "commit failed"
git push || echo "push failed"
git status
- name: "Upload Results ⬆️"
if: always()