From 0a4e9fe8cf8273d17244b28b273ddcad4c18aafb Mon Sep 17 00:00:00 2001 From: reesporte Date: Mon, 15 Nov 2021 10:16:43 -0600 Subject: [PATCH] move lattice build dir to right location --- .gitlab/.gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab/.gitlab-ci.yml b/.gitlab/.gitlab-ci.yml index 5d07a1dc9..cb2d6546c 100644 --- a/.gitlab/.gitlab-ci.yml +++ b/.gitlab/.gitlab-ci.yml @@ -42,12 +42,17 @@ build lattice: variables: CI: "false" script: - - echo "Building lattice..." + - # install and build lattice - cd lattice - yarn install - yarn build + - # move the build dir out and rename + - mv build ../ - cd ../ - - tar -czvf lattice.tar.gz lattice/build + - rm -r lattice + - mv build lattice + - # zip it up + - tar -czvf lattice.tar.gz lattice artifacts: paths: - lattice.tar.gz