Skip to content

Commit

Permalink
Updated build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Sep 25, 2024
1 parent cbcb33f commit 7ae1308
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ on:
branches: [master]
workflow_dispatch:
branches: [master]

jobs:
build:
outputs:
version: ${{ steps.vsix_version.outputs.version-number }}
name: Build
name: Build
runs-on: windows-2022
env:
Configuration: Release
DeployExtension: False
VsixManifestPath: src\source.extension.vsixmanifest
VsixManifestSourcePath: src\source.extension.cs

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET build dependencies
uses: timheuer/bootstrap-dotnet@v1
uses: timheuer/bootstrap-dotnet@v2
with:
nuget: 'false'
sdk: 'false'
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
# run: vstest.console.exe \_built\*Tests.dll

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}.vsix
path: /_built/**/*.vsix
Expand All @@ -65,10 +65,10 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download Package artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}.vsix

Expand Down

0 comments on commit 7ae1308

Please sign in to comment.