aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-10 15:07:36 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-10 15:07:36 +0100
commitaa4e3aa38bb28c8562ced328b660bee8361b48d9 (patch)
tree3f6ea9d96beb49959da2ef051b021af42210e5b7
parentv74.0-1; compress flatpak-repo folders for release (diff)
downloadlibrewolf-linux-aa4e3aa38bb28c8562ced328b660bee8361b48d9.tar.gz
librewolf-linux-aa4e3aa38bb28c8562ced328b660bee8361b48d9.tar.bz2
librewolf-linux-aa4e3aa38bb28c8562ced328b660bee8361b48d9.zip
avoid potential globbing issue with gitlab-release
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 73c7981..224a089 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -92,6 +92,6 @@ Release to Gitlab:
- pip3 install gitlab-release
- tar czf librewolf-aarch64-flatpak-repo.tar.gz librewolf-aarch64-flatpak-repo
- tar czf librewolf-x86_64-flatpak-repo.tar.gz librewolf-x86_64-flatpak-repo
- - gitlab-release "LibreWolf.*.tar.bz2 librewolf*.pkg.tar.* LibreWolf.*.AppImage librewolf-*-flatpak-repo.tar.gz LibreWolf.*.flatpak"
+ - "gitlab-release LibreWolf.*.tar.bz2 librewolf*.pkg.tar.* LibreWolf.*.AppImage librewolf-*-flatpak-repo.tar.gz LibreWolf.*.flatpak"
only:
- tags
bgstack15