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
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ defaults:

jobs:
create_nuget:
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -39,7 +39,7 @@ jobs:
path: ${{ env.NuGetDirectory }}/*.*nupkg

validate_nuget:
runs-on: windows-latest
runs-on: ubuntu-latest
needs: [ create_nuget ]
steps:
# Install the .NET SDK indicated in the global.json file
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
run: dotnet test --configuration Release

deploy:
runs-on: windows-latest
runs-on: ubuntu-latest
needs: [ validate_nuget, run_test ]
steps:
- uses: trstringer/manual-approval@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://github.com/Tynamix/ObjectFiller.NET/actions/workflows/build-and-test.yml/badge.svg?branch=master&event=push)](https://github.com/Tynamix/ObjectFiller.NET/actions/workflows/build-and-test.yml)
[![Build Status](https://github.com/Tynamix/ObjectFiller.NET/actions/workflows/build-and-test.yml/badge.svg?branch=master)](https://github.com/Tynamix/ObjectFiller.NET/actions/workflows/build-and-test.yml)
[![Join the chat at https://gitter.im/Tynamix/ObjectFiller.NET](https://badges.gitter.im/Tynamix/ObjectFiller.NET.svg)](https://gitter.im/Tynamix/ObjectFiller.NET?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

# ObjectFiller.NET
Expand Down
Loading