Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotVU authored Oct 19, 2024
1 parent 82bf0b8 commit 15d1352
Showing 1 changed file with 28 additions and 14 deletions.
42 changes: 28 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build .NET Framework and Publish to NuGet
name: Build .NET and Publish

on:
workflow_dispatch:
Expand All @@ -8,25 +8,39 @@ on:

jobs:
build:
runs-on: windows-2019
runs-on: windows-2022
strategy:
matrix:
dotnet: [ '8.0.x' ]
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2

- name: Setup NuGet
uses: NuGet/setup-nuget@v2

- name: Restore dependencies
run: nuget restore src/Eliot.UELib.csproj


- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}

- name: Install
run: dotnet restore src/Eliot.UELib.csproj

- name: Build
run: msbuild src/Eliot.UELib.csproj -t:rebuild -property:Configuration=Release

run: dotnet build src/Eliot.UELib.csproj

- name: Restore
run: dotnet restore src/Eliot.UELib.csproj

- name: Test
run: dotnet test Test/Eliot.UELib.Test.csproj

- name: Pack
run: dotnet pack --configuration Release src/Eliot.UELib.csproj

#- name: Push
# run: dotnet nuget push src/Eliot.UELib.csproj -k ${{ secrets.NUGET_API_KEY }}} -s https://api.nuget.org/v3/index.json

- name: Publish Eliot.UELib to NuGet
id: nuget
uses: alirezanet/[email protected]
Expand Down

0 comments on commit 15d1352

Please sign in to comment.