Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
solita-michalguspiel authored Jul 22, 2022
1 parent fdf6665 commit adf1917
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,17 @@ jobs:
Write-Host 'Shared code report: {Shared code report}'
Write-Host 'Total Lines of Code Shared Code...: ${{ steps.lines-of-code-reporter.shared.outputs.total_lines }}'
Write-Host 'Lines of Code Markdown Report Path...: ${{ steps.lines-of-code-reporter.shared.outputs.loc_report }}'
## update readme:
- name: update_readme
run: |
python3 update_readme.py steps.lines-of-code-reporter.android.outputs.loc_report steps.lines-of-code-reporter.ios.outputs.loc_report steps.lines-of-code-reporter.shared.outputs.loc_report
## push changes
- name: Commit and push changes
run: |
git config --global user.name "solita-michalguspiel"
git config --global user.email "[email protected]"
git add -A
git commit -m "update readme"
git push

0 comments on commit adf1917

Please sign in to comment.