Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Linux Arm64 users to run the experimental O# build #4892

Merged
merged 3 commits into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ jobs:
asset_name: csharp-${{ env.VERSION }}-darwin-x64.vsix
asset_content_type: application/zip

- name: Upload release build (linux-arm64)
id: upload-release-asset-linux-arm64
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./csharp-${{ env.VERSION }}-linux-arm64.vsix
asset_name: csharp-${{ env.VERSION }}-linux-arm64.vsix
asset_content_type: application/zip

- name: Upload release build (linux-x64)
id: upload-release-asset-linux-x64
uses: actions/upload-release-asset@v1
Expand Down
Loading