mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
strip ansi
This commit is contained in:
parent
8b001fb488
commit
52daf2551a
1 changed files with 5 additions and 2 deletions
7
.github/workflows/nightly.yml
vendored
7
.github/workflows/nightly.yml
vendored
|
@ -101,8 +101,11 @@ jobs:
|
|||
|
||||
- run: |
|
||||
echo "# System Diff" >> $GITHUB_STEP_SUMMARY
|
||||
# TODO: deal with store diff-closures ansi outputs...
|
||||
nix store diff-closures ./current ./updated | tee -a $GITHUB_STEP_SUMMARY summary.md
|
||||
diff=$(nix store diff-closures ./current ./updated)
|
||||
echo $diff
|
||||
echo $diff >> summary.md
|
||||
echo $diff | sed 's/\x1B\[[0-9;]\{1,\}[A-Za-z]//g' >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- run: df -h
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
|
|
Loading…
Reference in a new issue