Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: 8.0.x
global-json-file: global.json
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3
- name: Build
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ defaults:
shell: pwsh
jobs:
release:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: windows-latest
steps:
- name: Check for secrets
Expand All @@ -30,7 +29,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: 8.0.200 # Locked until VS/MSBuild is compatible with 8.0.300
global-json-file: global.json
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3
- name: Build
Expand All @@ -48,7 +47,7 @@ jobs:
- name: Build Windows installer
env:
AZURE_KEY_VAULT_CLIENT_SECRET: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }}
run: dotnet build src/Setup --configuration Release
run: msbuild src/Setup -p:Configuration=Release -restore -m
- name: Publish artifacts
uses: actions/upload-artifact@v7.0.1
with:
Expand Down
3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"sdk": {
"version": "8.0.400",
"version": "10.0.100",
"allowPrerelease": false,
"rollForward": "latestFeature"
}
}
Loading