Merge pull request #16 from orchid-lang/riley0122-patch-1 #28
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: ["master"] | |
permissions: write-all | |
jobs: | |
count: | |
name: "Count lines of code" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lines of Code Badge | |
id: badge | |
uses: shadowmoose/GHA-LoC-Badge@1.0.0 | |
with: | |
directory: ./ | |
badge: ./output/cloc_badge.svg | |
patterns: '**/*.cpp|**/*.hpp' | |
- 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' | |