Skip to content

Commit

Permalink
fix names, artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
john30 committed Jan 14, 2024
1 parent f83a0ef commit 99dae58
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
-
name: dump csv
run: |
docker run -v $PWD:/cfg john30/ebusd --dumpconfig -c /cfg/latest/de | sed -e 's#.*main notice. *##' > /cfg/de.txt \
&& docker run -v $PWD:/cfg john30/ebusd --dumpconfig -c /cfg/latest/en | sed -e 's#.*main notice. *##' > /cfg/en.txt
docker run -v $PWD:/cfg john30/ebusd --dumpconfig -c /cfg/latest/de | sed -e 's#.*main notice. *##' > dump.de \
&& docker run -v $PWD:/cfg john30/ebusd --dumpconfig -c /cfg/latest/en | sed -e 's#.*main notice. *##' > dump.en
-
name: check count
run: |
Expand All @@ -45,3 +45,11 @@ jobs:
sed -e 's#""##g' -e 's#,"[^"]*",#,,#g' dump.de|cut -d , -f 1,2,3,6,7,8 > norm.de \
&& sed -e 's#""##g' -e 's#,"[^"]*",#,,#g' dump.en|cut -d , -f 1,2,3,6,7,8 > norm.en \
&& diff norm.de norm.en
-
name: archive
uses: actions/upload-artifact@v4
with:
name: results
path: |
de.json en.json dump.de dump.en

0 comments on commit 99dae58

Please sign in to comment.