Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Dec 15, 2024
1 parent a9ece1f commit 57e398c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
blender_major_minor_bersion:
blender_major_minor_version:
- 2.93
- 3.3
- 3.6
Expand All @@ -33,11 +33,11 @@ jobs:
uses: actions/cache@v4
with:
path: blender.zip
key: ${{ matrix.blender_major_minor_bersion }}-archive-5
key: ${{ matrix.blender_major_minor_version }}-archive-5
- name: Download archive
if: steps.cache-archive.outputs.cache-hit != 'true'
env:
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_bersion }}
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_version }}
run: |
$url = "${env:BLENDER_ARCHIVE_BASE_URL}/Blender${env:BLENDER_MAJOR_MINOR_VERSION}/blender-${env:BLENDER_MAJOR_MINOR_VERSION}.0-windows-x64.zip"
$retry = 10
Expand Down Expand Up @@ -70,15 +70,15 @@ jobs:
strategy:
fail-fast: false
matrix:
blender_major_minor_bersion:
blender_major_minor_version:
- 2.93
- 3.3
- 3.6
- 4.2
blender_arch:
- arm64
include:
- blender_major_minor_bersion: 4.2
- blender_major_minor_version: 4.2
blender_arch: x64
env:
BLENDER_VRM_EXCLUDE_GUI_TEST: true
Expand All @@ -89,11 +89,11 @@ jobs:
uses: actions/cache@v4
with:
path: blender.dmg
key: ${{ matrix.blender_major_minor_bersion }}-${{ matrix.blender_arch }}-archive-5
key: ${{ matrix.blender_major_minor_version }}-${{ matrix.blender_arch }}-archive-5
- name: Download archive
if: steps.cache-archive.outputs.cache-hit != 'true'
env:
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_bersion }}
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_version }}
BLENDER_ARCH: ${{ matrix.blender_arch }}
run: |
url="${BLENDER_ARCHIVE_BASE_URL}/Blender${BLENDER_MAJOR_MINOR_VERSION}/blender-${BLENDER_MAJOR_MINOR_VERSION}.0-macos-${BLENDER_ARCH}.dmg"
Expand All @@ -116,7 +116,7 @@ jobs:
strategy:
fail-fast: false
matrix:
blender_major_minor_bersion:
blender_major_minor_version:
- 4.2
env:
BLENDER_VRM_EXCLUDE_GUI_TEST: true
Expand All @@ -127,11 +127,11 @@ jobs:
uses: actions/cache@v4
with:
path: blender.tar.gz
key: ${{ matrix.blender_major_minor_bersion }}-archive-6
key: ${{ matrix.blender_major_minor_version }}-archive-6
- name: Download archive
if: steps.cache-archive.outputs.cache-hit != 'true'
env:
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_bersion }}
BLENDER_MAJOR_MINOR_VERSION: ${{ matrix.blender_major_minor_version }}
run: |
url="${BLENDER_ARCHIVE_BASE_URL}/Blender${BLENDER_MAJOR_MINOR_VERSION}/blender-${BLENDER_MAJOR_MINOR_VERSION}.0-linux-x64.tar.xz"
curl -fsLS --retry 5 --retry-all-errors "$url" -o blender.tar.xz
Expand Down

0 comments on commit 57e398c

Please sign in to comment.