Skip to content

Bump dotnet-sdk from 10.0.300 to 10.0.301 in /msbuild #230

Bump dotnet-sdk from 10.0.300 to 10.0.301 in /msbuild

Bump dotnet-sdk from 10.0.300 to 10.0.301 in /msbuild #230

Workflow file for this run

name: OmniSharp-VSCode CI
on:
push:
branches: [master, feature/**]
pull_request:
branches: [master, feature/**]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: latest
dotnet-channel: LTS
- name: Install Node.js LTS
uses: actions/setup-node@v6
with:
node-version: 'lts/*'
- name: Install dependencies
run: |
npm ci
- name: Compile
run: npm run compile
- name: Prepublish VSIXs
run: npm run vscode:prepublish
- name: Build VSIXs
run: npm run vsix:release:package
- name: Upload build artifact (darwin-x64)
id: upload-release-asset-darwin-x64
uses: actions/upload-artifact@v4
with:
path: ./vsix/csharp-darwin-x64-*.vsix
name: csharp-darwin-x64.vsix
- name: Upload build artifact (linux-x64)
id: upload-release-asset-linux-x64
uses: actions/upload-artifact@v4
with:
path: ./vsix/csharp-linux-x64-*.vsix
name: csharp-linux-x64.vsix
- name: Upload build artifact (win32-x64)
id: upload-release-asset-win32-x64
uses: actions/upload-artifact@v4
with:
path: ./vsix/csharp-win32-x64-*.vsix
name: csharp-win32-x64.vsix