Skip to content

Commit

Permalink
💚 Fix CI Deploy
Browse files Browse the repository at this point in the history
Signed-off-by: OmegaRogue <[email protected]>
  • Loading branch information
OmegaRogue committed Jan 7, 2022
1 parent a1df462 commit f2e6830
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'

- name: Setup .NET 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.x.x'
- name: Create Release NuGet package
run: |
arrTag=(${GITHUB_REF//\// })
Expand All @@ -98,5 +99,4 @@ jobs:
curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
done
- name: Push to NuGet Feed
run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY

run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
[![GNU LGPL licensed](https://img.shields.io/github/license/OmegaRogue/TenorSharp)](COPYING.LESSER)
[![Nuget](https://img.shields.io/nuget/v/TenorSharp)](https://www.nuget.org/packages/TenorSharp/)
[![Discord](https://img.shields.io/discord/569206809693257728)](https://discord.gg/sWwzJeG)
[![Documentation Status](https://readthedocs.org/projects/tenorsharp/badge/?version=latest)](https://tenorsharp.readthedocs.io/en/latest/?badge=latest)

TenorSharp is a C# Library for the [TenorAPI](https://tenor.com/gifapi). TenorSharp was made with dotNET 5.0 and 6.0

Expand All @@ -15,15 +14,15 @@ For Development, fork and Clone this GitHub Repo.

For Usage, Refer to [Installing](#installing)

If you need more help, refer to the [Documentation](https://tenorsharp.readthedocs.io/en/latest/?badge=latest), or [join the Discord Server](https://discord.gg/sWwzJeG).
If you need more help, refer to the XML Doc Comments, or [join the Discord Server](https://discord.gg/sWwzJeG).

### Dependencies

TenorSharp is dependent on RestSharp and Newtonsoft.Json

### Installing

Use NuGet to Install [this Package](https://www.nuget.org/packages/TenorSharp
Use NuGet to Install [this Package](https://www.nuget.org/packages/TenorSharp)

## Usage
Refer to the [Tenor API Attribution Guidelines](https://tenor.com/gifapi/documentation#attribution) to properly attribute Content retrieved from Tenor.
Expand Down
1 change: 1 addition & 0 deletions TenorSharp/TenorSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<PackageReleaseNotes>Update to dotnet 5 and dotnet 6
Add Async Methods
Update Dependencies</PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>1.6.1</PackageVersion>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
Expand Down

0 comments on commit f2e6830

Please sign in to comment.