Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed May 28, 2024
1 parent 1f7231e commit fdea5a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dev/tasks/matlab/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
path: matlab-arrow-ubuntu.tar.gz

macos:
name: ${{ matrix.architecture }} macOS ${{ matrix.macos-version }} MATLAB
name: {{ '${{ matrix.architecture }}' }} macOS {{ '${{ matrix.macos-version }}' }} MATLAB
runs-on: macos-$${{ matrix.macos-version }}
strategy:
matrix:
Expand All @@ -86,14 +86,14 @@ jobs:
run: |
arrow/dev/tasks/matlab/rename_macos_dynamic_libraries.sh \
arrow/matlab/install/arrow_matlab/+libmexclass/+proxy \
${{ matrix.architecture-suffix }}
{{ '${{ matrix.architecture-suffix }}' }}
- name: Compress into single artifact
run: tar -cvzf matlab-arrow-macos-${{ matrix.architecture-suffix }}.tar.gz arrow/matlab/install/arrow_matlab
run: tar -cvzf matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz arrow/matlab/install/arrow_matlab
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: matlab-arrow-macos-${{ matrix.architecture-suffix }}.tar.gz
path: matlab-arrow-macos-${{ matrix.architecture-suffix }}.tar.gz
name: matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz
path: matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz

windows:
name: AMD64 Windows 2022 MATLAB
Expand Down

0 comments on commit fdea5a8

Please sign in to comment.