From 6ea045983912eff8f14d39ab1bed1c65107619ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnau=20V=C3=A0zquez?= Date: Thu, 19 May 2022 20:53:26 +0000 Subject: [PATCH] Remove env/var during build step --- .gitlab-ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b020ba8f..bb29fc71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,15 +88,13 @@ build-aur: image: $CONTAINER_IMAGE/aur:$CONTAINER_TAG stage: build before_script: - - mkdir $PUBLISH_DEST && cp -a pkg/arch/. $PUBLISH_DEST + - mkdir dist && cp -a pkg/arch/. dist script: - - cd $PUBLISH_DEST && makepkg -sifc --noconfirm - environment: - name: aur-repo + - cd dist && makepkg -sifc --noconfirm artifacts: name: "easy-installer-aur" paths: - - $PUBLISH_DEST/*.pkg.tar.zst + - dist/*.pkg.tar.zst publish-ubuntu: image: registry.gitlab.e.foundation/e/devices/easy-installer:stable -- GitLab