docs: Use breakout breakout sample image for dreame FEL instructions #1495
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
{ | |
"name": "Count Lines of Code", | |
"on": [ | |
"push", | |
"pull_request" | |
], | |
"jobs": { | |
"tokei": { | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/checkout@v4" | |
}, | |
{ | |
"name": "Count Lines of Code (tokei)", | |
"uses": "hypfer/tokei-action@master" | |
}, | |
{ | |
"name": "Upload tokei output as a build artifact", | |
"uses": "actions/upload-artifact@v4", | |
"with": { | |
"name": "loc.txt", | |
"path": "loc.txt" | |
} | |
} | |
] | |
} | |
} | |
} |