summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-03 12:51:23 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-03 12:51:23 +0100
commitf076168f4fd872737b7456bbd87e1c5f5a910e5e (patch)
tree04c340288aaf1a0c4d5c3886e702082c86f186cf
parentanother missing dependency. why did this ever work before? (diff)
downloadlibrewolf-debian-f076168f4fd872737b7456bbd87e1c5f5a910e5e.tar.gz
librewolf-debian-f076168f4fd872737b7456bbd87e1c5f5a910e5e.tar.bz2
librewolf-debian-f076168f4fd872737b7456bbd87e1c5f5a910e5e.zip
ci; run again with bigger log size
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 25377a3..4422123 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,9 +35,9 @@ variables:
script:
- ./scripts/build-librewolf-dpkg.sh
artifacts:
- name: "librewolf-${pkgver}-${pkgrel}_${CARCH}"
+ name: "librewolf-${pkgver}-${pkgrel}"
paths:
- - "./**/librewolf-${pkgver}-${pkgrel}*.deb"
+ - "./**/librewolf*.deb"
build_debian_x86_64:
image: debian:sid
bgstack15