From b4e5574288b8ba5198693e6e33aa546073309eb6 Mon Sep 17 00:00:00 2001 From: daudix Date: Fri, 5 Jul 2024 05:52:20 +0300 Subject: [PATCH] Return .domains to repo's root Turns out it's being copied to every site using Duckquill theme, not good --- .domains | 2 ++ .woodpecker.yaml | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 .domains diff --git a/.domains b/.domains new file mode 100644 index 0000000..95bdcf5 --- /dev/null +++ b/.domains @@ -0,0 +1,2 @@ +duckquill.daudix.one +duckquill.daudix.codeberg.page diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 507f08e..ba17dc8 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -39,6 +39,8 @@ steps: - git rm -r "*" || true # Don't fail if there's nothing to remove # Copy the output of the build step - cp -ar ../public/. . + # Copy .domains in place (Duckquill specific. you should just place it in ./static/) + - cp ../.domains . # Commit and push all static files with the source commit hash - git add --all - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" --allow-empty