fix(tvix): add dummy target to attach extra-step to
Change-Id: I594a6652e2efe7aa6e35c7cdd84fc3097660614f Reviewed-on: https://cl.tvl.fyi/c/depot/+/8009 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
30c4454056
commit
dc1e86001c
1 changed files with 10 additions and 6 deletions
|
@ -58,11 +58,15 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
meta.ci.targets = [ "shell" ];
|
export = (pkgs.runCommandLocal "export-tvix" { } ''
|
||||||
|
echo "carrier for repo export extra-step" > $out
|
||||||
|
'').overrideAttrs (_: {
|
||||||
|
meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush {
|
||||||
|
filter = ":workspace=views/tvix";
|
||||||
|
remote = "git@github.com:tvlfyi/tvix.git";
|
||||||
|
ref = "refs/heads/canon";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush {
|
meta.ci.targets = [ "shell" "export" ];
|
||||||
filter = ":workspace=views/tvix";
|
|
||||||
remote = "git@github.com:tvlfyi/tvix.git";
|
|
||||||
ref = "refs/heads/canon";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue