From 22cfe34f8436df794c145e3774ba0e37c8b3e63b Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 11 Oct 2023 21:40:22 +0200 Subject: [PATCH] change the upload artifact folder to dist --- .github/workflows/node.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 472ca44..553e85b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -41,11 +41,9 @@ jobs: - name: Build for Linux if: startsWith(matrix.os, 'ubuntu') run: npm run build:linux - - name: Create upload directory - run: mkdir -p release - name: Upload Artifact uses: actions/upload-artifact@v3 with: name: release_on_${{ matrix.os }} - path: release/ + path: dist/ retention-days: 5 \ No newline at end of file