From 2384e28f01a275c3b720323160598da4f64e1e10 Mon Sep 17 00:00:00 2001 From: Inrixia Date: Wed, 1 May 2024 18:18:45 +1200 Subject: [PATCH] Build artifact upload fixes --- .github/workflows/autoBuildDev.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autoBuildDev.yml b/.github/workflows/autoBuildDev.yml index fae0f6a..883a31d 100644 --- a/.github/workflows/autoBuildDev.yml +++ b/.github/workflows/autoBuildDev.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 21 + node-version: 21.x - name: Install dependencies run: npm install - name: Build @@ -25,7 +25,8 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v4 with: - path: ./build/* + name: build-${{ matrix.runs-on }} + path: ./build/ Release: needs: Build @@ -34,8 +35,7 @@ jobs: - name: Download All Artifacts uses: actions/download-artifact@v4 with: - path: my-artifact - pattern: my-artifact-* + path: ./build/ merge-multiple: true - name: Publish dev build on GitHub uses: "marvinpinto/action-automatic-releases@latest"