Skip to content

Commit

Permalink
Fix path to apple silicon build of vegafusion-server (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease authored Mar 24, 2023
1 parent 62b1501 commit 101bc8f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,16 @@ jobs:
dest: vegafusion-server-${{ matrix.options[1] }}.zip
- name: zip executable (Mac or Linux)
uses: papeloto/action-zip@v1
if: runner.os != 'Windows'
if: ${{ matrix.options[1] != 'osx-arm64' && runner.os != 'Windows'}}
with:
files: target/release/vegafusion-server
dest: vegafusion-server-${{ matrix.options[1] }}.zip
- name: zip executable (Apple silicon)
uses: papeloto/action-zip@v1
if: ${{ matrix.options[1] == 'osx-arm64'}}
with:
files: target/aarch64-apple-darwin/release/vegafusion-server
dest: vegafusion-server-${{ matrix.options[1] }}.zip
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 101bc8f

Please sign in to comment.