Update dynamo.yml
This commit is contained in:
parent
b2430fdea5
commit
f766359d3b
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue