expand flag and note what's going on with it

This commit is contained in:
Brian Hicks 2023-06-12 17:18:57 -05:00
parent 0a448e4782
commit c691f19c3a
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50

View File

@ -23,6 +23,10 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: niv
- run: nix develop --ignore-environment --keep PERCY_TOKEN -c shake --verbose ci
# note about the command below: everything after `--command` is
# interpreted as command-line arguments. So the actual command that we're
# running is `shake --verbose ci`; `--verbose` and `ci` aren't being
# interpreted as flags to `nix develop`!
- run: nix develop --ignore-environment --keep PERCY_TOKEN --command shake --verbose ci
env:
PERCY_TOKEN: '${{ secrets.PERCY_TOKEN }}'