VSIX Installer - Description, icons for the first release #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cake Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.3 | |
- name: Install Cake.Tool | |
run: dotnet tool install --global Cake.Tool | |
- name: Restore NuGet packages | |
run: nuget restore src\Cody.Core\Cody.Core.csproj -PackagesDirectory src\packages | |
- name: Run Cake script | |
run: | | |
cd src | |
dotnet tool restore | |
corepack enable | |
corepack install --global pnpm@8.6.7 | |
dotnet cake | |