Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dedo1911 committed Feb 5, 2024
0 parents commit f9d4f4d
Show file tree
Hide file tree
Showing 11 changed files with 762 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: prerelease NuGet

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
- name: Build and create nupkg
run: dotnet build --configuration Release
shell: bash
- name: Publish NuGet Package
shell: bash
run: dotnet nuget push bin/Release/*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json
Loading

0 comments on commit f9d4f4d

Please sign in to comment.