mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 16:34:13 +01:00
23 lines
531 B
YAML
23 lines
531 B
YAML
name: NuGet release
|
|
on:
|
|
push:
|
|
branches:
|
|
- release
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Prepare .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '7.0.x'
|
|
|
|
- name: Build solution
|
|
run: dotnet pack FFMpegCore.sln -c Release
|
|
|
|
- name: Publish NuGet package
|
|
run: dotnet nuget push nupkg/*.nupkg --skip-duplicate --source nuget.org --api-key ${{ secrets.NUGET_TOKEN }}
|
|
|