summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.woodpecker.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml
index 4a4f497..aa8dc8d 100644
--- a/.woodpecker.yml
+++ b/.woodpecker.yml
@@ -2,23 +2,25 @@ steps:
build:
image: debian
commands:
- - ./scripts/prep-librewolf-dpkg.sh
+ - echo ./scripts/prep-librewolf-dpkg.sh
+ - echo disabled for testing
upload:
image: woodpeckerci/plugin-s3
secrets: [aws_access_key_id, aws_secret_access_key]
settings:
bucket: artifacts
source: "prepared/*librewolf*.{dsc,tar.xz,tar.gz}"
- target: /${CI_BUILD_NUMBER}
+ target: /${CI_PIPELINE_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"
+ - env
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_PIPELINE_NUMBER}/librewolf_$${firefox_version}.orig.tar.xz"
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_PIPELINE_NUMBER}/librewolf-$${distro_firefox_version}.debian.tar.xz"
+ - echo "https://storage.ci.librewolf.net/artifacts/${CI_PIPELINE_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