[FIX] Lines of code action #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Count lines of code | |
on: | |
push: | |
branches: [main, dev] | |
jobs: | |
lines_of_code_job: | |
runs-on: ubuntu-latest | |
name: Count lines of code | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Launch the local action | |
uses: shadowmoose/[email protected] | |
id: badge | |
with: | |
debug: true | |
directory: ./astro_plasma | |
badge: ./misc/lines_of_code.svg | |
# ignore: cloudy-codes/|example-scripts/|requirements/|README | |
- name: Print the output | |
run: | | |
echo "Scanned: ${{ steps.badge.outputs.counted_files }}"; | |
echo "Line Count: ${{ steps.badge.outputs.total_lines }}"; | |
- name: Deploy to badges branch | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_dir: ./misc | |
publish_branch: badges | |
github_token: ${{ secrets.TOKEN_GITHUB }} | |
user_name: github-actions[bot] | |
user_email: github-actions[bot]@users.noreply.github.com |