-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.14 KB
/
linesOfCode.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '25 18 * * 1'
name: Lines Of Code
jobs:
loc_job:
runs-on: ubuntu-latest
name: Lines Of Code
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Launch the local action
uses: shadowmoose/[email protected]
id: badge
with:
debug: true
directory: ./
badge: ./output/badge.svg
ignore: '.github|backups|tutorial|build|*.png|*.svg|*.jpg|sdkconfig.old|sdkconfig.defaults.esp32c6|sdkconfig.defaults.esp32c2|sdkconfig.defaults|sdkconfig'
- 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'