Merge pull request #34 from alexispurslane/develop #159
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
on: [push] | |
name: Run Test | |
jobs: | |
hello_world_job: | |
runs-on: ubuntu-latest | |
name: Create Lines of Code Badge | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Code Lines Badge | |
uses: alexispurslane/[email protected] | |
id: badge | |
with: | |
debug: true | |
directory: ./ | |
badge: ./output/badge.svg | |
patterns: 'init.el' | |
- 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: | |
keep_files: true | |
publish_dir: ./output | |
publish_branch: image-data | |
github_token: ${{ secrets.REPO_TOKEN }} | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' |