Skip to content

Dropped the System.Reactive dependency #8

Dropped the System.Reactive dependency

Dropped the System.Reactive dependency #8

Workflow file for this run

name: .NET Publish
on:
push:
branches: [ master ]
paths-ignore:
- '**/README.md'
- '**/LICENSE.md'
- '**/.gitattributes'
- '**/.gitignore'
- 'Images/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build and Pack
run: dotnet build RangeSlider.Avalonia --configuration Release
- name: Publish to Nuget
run: dotnet nuget push "RangeSlider.Avalonia/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish to GitHub Packages
run: dotnet nuget push "RangeSlider.Avalonia/bin/Release/*.nupkg" --api-key ${{secrets.GITHUB_TOKEN}} --source https://nuget.pkg.github.com/DmitryNizhebovsky/index.json --skip-duplicate