diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 22:10:19 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 22:18:38 -0700 |
commit | f64406cd9ceb69b798b0b8d50c902d84750fdfbf (patch) | |
tree | b1c276cd4bf3f72408e9b66d7741b4590923217e /.ci | |
parent | 90f42223790130e37c9f02d839e8617b2e96e8a5 (diff) | |
download | ci-f64406cd9ceb69b798b0b8d50c902d84750fdfbf.tar.gz ci-f64406cd9ceb69b798b0b8d50c902d84750fdfbf.zip |
Fixes dockerfile context & path
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/ci.cjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -509,7 +509,7 @@ var DefaultGitHookPipelineBuilder = class extends BasePipelineBuilder { }); } getSourceDestination() { - return this.remoteUrl.split("/").at(-1) ?? "src"; + return this.remoteUrl.replace(".git", "").split("/").at(-1) ?? "src"; } getBranch() { const branchRefPrefix = "refs/heads/"; |