summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-09-12 16:46:19 -0400
committerB. Stack <bgstack15@gmail.com>2023-09-12 16:46:19 -0400
commita7ec602fc8bf879e4a5f0cf573b7158f384c3bb2 (patch)
tree05a6d48617ed8451e726fc88755a6469785b8a64
parenttry step "upload" (diff)
downloadlibrewolf-debian-a7ec602fc8bf879e4a5f0cf573b7158f384c3bb2.tar.gz
librewolf-debian-a7ec602fc8bf879e4a5f0cf573b7158f384c3bb2.tar.bz2
librewolf-debian-a7ec602fc8bf879e4a5f0cf573b7158f384c3bb2.zip
print urls too
-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