From 946267dba6c0a18b9c59291706a4ef255ad8d363 Mon Sep 17 00:00:00 2001 From: howetuft Date: Sun, 8 Dec 2024 23:24:54 +0100 Subject: [PATCH] Fix concurrency --- .github/workflows/bundles.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bundles.yml b/.github/workflows/bundles.yml index 93a34761..e9b5725f 100644 --- a/.github/workflows/bundles.yml +++ b/.github/workflows/bundles.yml @@ -16,7 +16,7 @@ on: jobs: build_bundles: - name: Build bundles + name: Build bundle ${{ matrix.platform }} runs-on: ubuntu-latest strategy: matrix: @@ -35,7 +35,7 @@ jobs: - name: Checkout main repository uses: actions/checkout@v4 with: - path: BlendLuxCore + path: ${{ matrix.platform }} - name: Prepare Blender install run: | @@ -51,7 +51,7 @@ jobs: - name: Retrieve wheel shell: bash run: | - dest=${{ github.workspace }}/BlendLuxCore/wheels + dest=${{ matrix.platform }}/BlendLuxCore/wheels mkdir -p ${dest} pip download "pyluxcore==${WHEELS_VERSION}" \ @@ -77,10 +77,10 @@ jobs: run: | echo "${{ github.workspace }}" blender --command extension build \ - --source-dir "${{ github.workspace }}/BlendLuxCore" + --source-dir "${{ matrix.platform }}/BlendLuxCore" - name: Upload artifact uses: actions/upload-artifact@v4 with: - path: ${{ github.workspace }}/BlendLuxCore-*.zip + path: ${{ matrix.platform }}/BlendLuxCore-*.zip name: blc-${{ matrix.platform }}