summaryrefslogtreecommitdiff
path: root/.woodpecker.yml
blob: 4a4f497071dfe20deca88947737718b237b38a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
steps:
  build:
    image: debian
    commands:
      - ./scripts/prep-librewolf-dpkg.sh
  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}
      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