Skip to content

Commit

Permalink
Fix concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
howetuft committed Dec 8, 2024
1 parent 5e12299 commit 946267d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
build_bundles:
name: Build bundles
name: Build bundle ${{ matrix.platform }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Checkout main repository
uses: actions/checkout@v4
with:
path: BlendLuxCore
path: ${{ matrix.platform }}

- name: Prepare Blender install
run: |
Expand All @@ -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}" \
Expand All @@ -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 }}

0 comments on commit 946267d

Please sign in to comment.