Skip to content

Commit 42eb2b6

Browse files
committed
Package and publish a Linux arm64 package
1 parent 5fac114 commit 42eb2b6

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/release-ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,17 @@ jobs:
5252
asset_name: csharp-${{ env.VERSION }}-darwin-x64.vsix
5353
asset_content_type: application/zip
5454

55+
- name: Upload release build (linux-arm64)
56+
id: upload-release-asset-linux-arm64
57+
uses: actions/upload-release-asset@v1
58+
env:
59+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
with:
61+
upload_url: ${{ github.event.release.upload_url }}
62+
asset_path: ./csharp-${{ env.VERSION }}-linux-arm64.vsix
63+
asset_name: csharp-${{ env.VERSION }}-linux-arm64.vsix
64+
asset_content_type: application/zip
65+
5566
- name: Upload release build (linux-x64)
5667
id: upload-release-asset-linux-x64
5768
uses: actions/upload-release-asset@v1

tasks/offlinePackagingTasks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const offlinePackages = [
2828
{ platformInfo: new PlatformInformation('win32', 'x86'), id: "win32-ia32" },
2929
{ platformInfo: new PlatformInformation('win32', 'arm64'), id: "win32-arm64" },
3030
{ platformInfo: new PlatformInformation('linux', 'x86_64'), id: "linux-x64" },
31+
{ platformInfo: new PlatformInformation('linux', 'arm64'), id: "linux-arm64" },
3132
{ platformInfo: new PlatformInformation('darwin', 'x86_64'), id: "darwin-x64" },
3233
{ platformInfo: new PlatformInformation('darwin', 'arm64'), id: "darwin-arm64" },
3334
];

0 commit comments

Comments
 (0)