Skip to content

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes #370

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes #370

Workflow file for this run

name: Count lines
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Count lines of text in this repository
run: git ls-files *[^.png] | xargs wc -l | grep total | awk '{print $1}' > count.txt
- uses: pCYSl5EDgo/cat@master
id: count
with:
path: count.txt
- run: echo $TEXT
env:
TEXT: ${{ steps.count.outputs.text }}