summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.woodpecker.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml
index c3429f6..4a4f497 100644
--- a/.woodpecker.yml
+++ b/.woodpecker.yml
@@ -8,7 +8,17 @@ steps:
secrets: [aws_access_key_id, aws_secret_access_key]
settings:
bucket: artifacts
- source: "prepared/*.{dsc,.tar.xz,.tar.gz}"
+ source: "prepared/*librewolf*.{dsc,tar.xz,tar.gz}"
target: /${CI_BUILD_NUMBER}
path_style: true
endpoint: https://storage.ci.librewolf.net
+ display-links:
+ image: alpine
+ commands:
+ - . ./scripts/prep-librewolf-dpkg.conf
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf_${firefox_version}.orig.tar.xz"
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-${distro_firefox_version}.debian.tar.xz"
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-${distro_firefox_version}.dsc"
+ #- echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf_$(cat version).orig.tar.xz"
+ #- echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-$(cat version)-$(cat release).debian.tar.xz"
+ #- echo "https://storage.ci.librewolf.net/artifacts/${CI_BUILD_NUMBER}/librewolf-$(cat version)-$(cat release).dsc"
bgstack15