summaryrefslogtreecommitdiff
path: root/.woodpecker.yml
blob: c3429f6b369541439a7c5ca9eaa8e5c17fa58b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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/*.{dsc,.tar.xz,.tar.gz}"
      target: /${CI_BUILD_NUMBER}
      path_style: true
      endpoint: https://storage.ci.librewolf.net
bgstack15