From 0919033089c4887ab7951ffccca4e0910c8c872a Mon Sep 17 00:00:00 2001 From: Olivier Demers Date: Sat, 2 Sep 2023 14:53:45 -0400 Subject: [PATCH] fix: incorrect ci artifact folder --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22a060a..b342387 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ build: stage: build artifacts: paths: - - build/ + - dist/ script: - npm install - npm run build @@ -18,7 +18,7 @@ build: deploy: stage: deploy script: - - ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com docs build/* + - ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com docs dist/* environment: name: docs url: https://docs.pls5618.com