Bump System.Text.Json from 8.0.0 to 8.0.5 in /ExplorerTabUtility in the nuget group across 1 directory #8
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: Build ExplorerTabUtility | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '*' | |
- name: Restore dependencies | |
run: dotnet restore ExplorerTabUtility.sln | |
- name: Build solution | |
run: dotnet build ExplorerTabUtility.sln --configuration Release | |
- name: Publish executable | |
run: dotnet publish ExplorerTabUtility.sln --configuration Release --framework net8.0-windows --output ./output | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ExplorerTabUtility-executable | |
path: ./output |