Skip to content

Commit

Permalink
Fix paths in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranayub committed May 22, 2019
1 parent d57587e commit 1c14f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
TAG=$1
KEY=$2

dotnet pack -c Release -o ./dist IGDB/IGDB.csproj -p:PackageVersion=$TAG;Title="IGDB API Wrapper";Authors="kayub";PackageDescription="A .NET Standard wrapper around the IGDB v3 games database API";PackageLicenseExpression="Apache-2.0";PackageTags="igdb;games;api;wrapper"
dotnet pack -c Release -o ../dist IGDB/IGDB.csproj -p:PackageVersion=$TAG;Title="IGDB API Wrapper";Authors="kayub";PackageDescription="A .NET Standard wrapper around the IGDB v3 games database API";PackageLicenseExpression="Apache-2.0";PackageTags="igdb;games;api;wrapper"

dotnet nuget push ./dist/IGDB.nupkg -k $KEY -s https://www.nuget.org
dotnet nuget push ./dist/IGDB-$TAG.nupkg -k $KEY -s https://www.nuget.org

0 comments on commit 1c14f71

Please sign in to comment.