Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRynne committed Jun 20, 2020
2 parents 9b13e72 + 9e0944a commit cf56365
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,14 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
source-url: https://nuget.pkg.github.com/Paramdigma/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: ⚙️ Install dependencies
run: dotnet restore
- name: 🏗 Build
run: dotnet build --configuration Release --no-restore
- name: 🧪 Test
run: dotnet test --no-restore --verbosity normal
- name: 🗜 Compress build files # This would actually build your project, using zip for an example artifact
run: zip --junk-paths ./Paramdigma.Core.zip ./src/bin/Release/netstandard2.1/*
run: zip --junk-paths ./Paramdigma.Core.zip ./src/bin/Release/netstandard2.0/*

- name: 📘 Create Release
id: create_release
Expand All @@ -50,10 +47,9 @@ jobs:
asset_content_type: application/zip
- name: 📦 Create the package
run: dotnet pack --configuration Release src/Paramdigma.Core.csproj
- run: dotnet nuget add source https://nuget.pkg.github.com/Paramdigma/index.json --name github --username AlanRynne --password ${{secrets.GITHUB_TOKEN}}
- name: 🚀 Publish the package to GPR
run: dotnet nuget push ./src/bin/Release/*.nupkg
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: dotnet nuget push ./src/bin/Release/*.nupkg --source github

deploy_docs:
runs-on: ubuntu-latest
Expand Down
4 changes: 1 addition & 3 deletions src/Paramdigma.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
<PackageProjectUrl>https://paramdigma.com/Core/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Paramdigma/Core/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>0.0.7</PackageVersion>
<AssemblyVersion>0.0.7</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
<PackageId>Paramdigma.Core</PackageId>
<Version>0.0.7</Version>
<Version>0.0.8</Version>
<Authors>Alan Rynne</Authors>
<Company>Paramdigma</Company>
<PackageDescription>Computational Geometry library for .Net</PackageDescription>
Expand Down

0 comments on commit cf56365

Please sign in to comment.