summaryrefslogtreecommitdiff
path: root/.woodpecker.yml
blob: d7c733daab031975fa8feaedc370ecd93d821583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_PIPELINE_NUMBER}
      path_style: true
      endpoint: https://storage.ci.librewolf.net
  display-links:
    image: alpine
    commands:
      - ./scripts/ci-print-_service.sh
      #- . ./scripts/prep-librewolf-dpkg.conf
      #- 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"
bgstack15