From a323c05b51eb643c2b341bbce76e16f3feb28c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Paul=20Grandsire?= Date: Sun, 14 Apr 2024 17:23:29 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20ci:=20fix=20path=20to=20build=20?= =?UTF-8?q?website?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-website.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index 93bc98f..1900475 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -10,7 +10,6 @@ jobs: steps: - uses: actions/checkout@v4 - - run: cd ${{github.workspace}}/website/ - uses: actions/setup-node@v4 with: @@ -19,12 +18,14 @@ jobs: cache-dependency-path: website/package-lock.json - run: npm ci + working-directory: ./website - run: run run build + working-directory: ./website - - uses: actions/upload-artifact@v4.3.1 + - uses: actions/upload-artifact@v4.3.1 with: name: "website-build-artifact" - path: "dist/**" + path: "website/dist/**" overwrite: true deploy: