Skip to content

Picking up the right folder for the release #189

Picking up the right folder for the release

Picking up the right folder for the release #189

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
env:
CONFIGURATION: Release
DOTNET_VERSION: 9.0.x
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install Package libmsquic
run: |
sudo apt update
sudo apt install -y libmsquic
shell: sh
- name: Build
run: dotnet build Http3Tools.sln --configuration ${{ env.CONFIGURATION }}
- name: Test
run: dotnet test Http3Tools.sln --configuration ${{ env.CONFIGURATION }}
- name: Publish VSCE
run: |
pushd ./src/VSCodeExt/
npm install
npm run vsce-deploy
popd