Debugging briefcase pipeline
Somehow `git-secrets --scan-history` is exiting non-zero, when I don't think it should. Logging some environment information to get a better idea of what's going on.
This commit is contained in:
parent
f53b08e4a0
commit
56e4d9f9b5
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,12 @@
|
||||||
let
|
let
|
||||||
pipeline.steps = [
|
pipeline.steps = [
|
||||||
{
|
{
|
||||||
command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
|
command = ''
|
||||||
|
echo $(pwd)
|
||||||
|
git show HEAD
|
||||||
|
git log -n 1
|
||||||
|
${pkgs.git-secrets}/bin/git-secrets --scan-history
|
||||||
|
'';
|
||||||
label = ":briefcase: Briefcase [lint]";
|
label = ":briefcase: Briefcase [lint]";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue