Skip to content

Bump System.Text.Json from 8.0.0 to 8.0.5 in /ExplorerTabUtility in the nuget group across 1 directory #8

Bump System.Text.Json from 8.0.0 to 8.0.5 in /ExplorerTabUtility in the nuget group across 1 directory

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

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