move lattice build dir to right location

This commit is contained in:
reesporte 2021-11-15 10:16:43 -06:00
parent dcab3a4bce
commit 0a4e9fe8cf

View file

@ -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