Skip to content

fix release ci

fix release ci #101

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@v2
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Install Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Install dependencies
run: |
npm ci
npm i -g gulp
- name: Compile
run: npm run compile
- name: Prepublish VSIXs
run: npm run vscode:prepublish
- name: Build VSIXs
run: gulp 'vsix:release:package'
- name: Upload VSIX build artifacts
uses: actions/upload-artifact@v2
with:
name: ci-extension-artifact
path: ./vsix/*.vsix