Skip to content

Yay! Lines of Code working with Github Actions #2

Yay! Lines of Code working with Github Actions

Yay! Lines of Code working with Github Actions #2

Workflow file for this run

on: [push]
name: Run Test
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Test Run
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Launch the local action
uses: shadowmoose/[email protected]
id: badge
with:
debug: false
directory: ./
badge: ./output/loc-badge.svg
ignore: 'node_modules/|README|*.mp3|*.zip|hardware/'
- 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'