Skip to content

Commit

Permalink
Update GitHub workflow script
Browse files Browse the repository at this point in the history
  • Loading branch information
FarmGeek4Life committed Feb 10, 2025
1 parent ef3a115 commit 6729829
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/buildNuGet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # avoid shallow clone so NerdBank.GitVersioning can calculate version

Expand All @@ -32,14 +32,14 @@ jobs:
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /t:restore /t:build /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

- name: Archive compiled binaries for .NET 4.6.2
uses: actions/upload-artifact@v3
- name: Archive compiled binaries for .NET 4.8
uses: actions/upload-artifact@v4
with:
name: Compiled binaries, .NET 4.6.2
path: PSI_Interface/bin/Release/net462/*.*
name: Compiled binaries, .NET 4.8
path: PSI_Interface/bin/Release/net48/*.*

- name: Archive compiled .nupkg
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Compiled .nupkg
path: PSI_Interface/bin/Release/*.nupkg
Expand Down

0 comments on commit 6729829

Please sign in to comment.