Skip to content

Commit

Permalink
Mac runnders are currently only x64, not arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
koliyo committed Oct 7, 2023
1 parent d3b2859 commit 2d519d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: hylo-lsp-artifacts-mac
path: hylo-lsp-mac-arm64
path: hylo-lsp-mac-x64

- name: Download hylo-lsp-artifacts-linux
uses: actions/download-artifact@v3
Expand All @@ -45,11 +45,11 @@ jobs:
mkdir -p release-artifacts
tar -zcvf release-artifacts/hylo-stdlib.tar.gz hylo-stdlib
# Repackage with just the server binaries, for minimal size, and zip for easy unpacking in node.js
chmod +x hylo-lsp-mac-arm64/*
chmod +x hylo-lsp-mac-x64/*
chmod +x hylo-lsp-linux-x64/*
chmod +x hylo-lsp-windows-x64/*
zip release-artifacts/hylo-lsp-server-mac.zip hylo-lsp-mac-arm64/hylo-lsp-server
zip release-artifacts/hylo-lsp-client-mac.zip hylo-lsp-mac-arm64/hylo-lsp-client
zip release-artifacts/hylo-lsp-server-mac.zip hylo-lsp-mac-x64/hylo-lsp-server
zip release-artifacts/hylo-lsp-client-mac.zip hylo-lsp-mac-x64/hylo-lsp-client
zip release-artifacts/hylo-lsp-server-linux.zip hylo-lsp-linux-x64/hylo-lsp-server
zip release-artifacts/hylo-lsp-client-linux.zip hylo-lsp-linux-x64/hylo-lsp-client
zip release-artifacts/hylo-lsp-server-windows.zip hylo-lsp-windows-x64/hylo-lsp-server.exe
Expand Down

0 comments on commit 2d519d5

Please sign in to comment.