Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

chore: add line of code badge #4

chore: add line of code badge

chore: add line of code badge #4

Workflow file for this run

name: Badge Generation
on:
push:
branches:
- main
- dev
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Launch the local action
uses: shadowmoose/GHA-LoC-Badge@1.0.0
id: badge
with:
debug: true
directory: ./
patterns: '*.py'
badge: ./output/loc_badge.svg
- name: Print the output
run: |
echo "Scanned: ${{ steps.badge.outputs.counted_files }}";
echo "Line Count: ${{ steps.badge.outputs.total_lines }}";
- name: Deploy to image-data branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./output
publish_branch: image-data
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'