Skip to content

Update setup-windows-x64-netcore.bat #75

Update setup-windows-x64-netcore.bat

Update setup-windows-x64-netcore.bat #75

Workflow file for this run

on: [push]
name: Lines of Code
jobs:
loc_job:
runs-on: ubuntu-latest
name: Run
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create the badge
uses: shadowmoose/[email protected]
id: badge
with:
debug: true
directory: ./
badge_label: lines of code
badge_color: green
badge: ./output/badge.svg
ignore: '.github|samples|setup|README.md|LICENSE.txt'
- name: Print the output
run: |
echo "Scanned: ${{ steps.badge.outputs.counted_files }}";
echo "Line Count: ${{ steps.badge.outputs.total_lines }}";
- name: Deploy to loc branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./output
publish_branch: loc
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'