Commit graph

7 commits

Author SHA1 Message Date
cd38cd76fd
fix(sh): ${VAR:-val} and ${VAR-val} are different
Who would've thought?

`:` means or empty, so:

```sh
VAR=
echo "${VAR-default}" # prints 'default'

VAR=''
echo "${VAR-default}" # prints ''

VAR=''
echo "${VAR:-default}" # prints 'default'
```

;-; nothing wants to work
2024-12-19 23:15:22 +01:00
bff5365c60
fix(action): re-enable extra logs
Some logs where hidden, we can now put them into groups instead (and
figure out why this is failing T-T.
2024-12-18 23:40:22 +01:00
c3362d4650
fix(action): small typos and weird stuff
Why is it not downloading the previous report?
2024-12-18 16:20:41 +01:00
08d9598c26
fix(action): better logging
Be more clear about why it failed
2024-12-18 16:06:58 +01:00
46291fc850
feat!(report): generate JSON instead of markdown
This allows us to analyze the report more easily. There is experimental
support for comparing against a base report, but we don't expose that
functionality to the action.
2024-12-17 23:17:48 +01:00
e0d48ae08a
fix(create-report): do not error if an output is missing
Handle it with grace c:
2024-12-15 21:05:24 +01:00
abb495c57a
feat: create action
Hopefully it works?
2024-12-15 20:32:32 +01:00