Skip to content

Commit

Permalink
Merge pull request #3 from LyleDavis/cut_first_release
Browse files Browse the repository at this point in the history
Cut first release
  • Loading branch information
LyleDavis committed Oct 13, 2020
2 parents 45a41ee + 1a880eb commit 5466611
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CD

on:
push:
branches: [ master ]

jobs:
nuget:
name: Nuget push
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish on version change
id: publish_nuget
uses: rohith/publish-nuget@v2
with:
PROJECT_FILE_PATH: src/Chainz/Chainz.csproj
PACKAGE_NAME: Chainz
TAG_COMMIT: true
TAG_FORMAT: v*
NUGET_KEY: ${{secrets.CHAINZ_CD_PUSH}}

7 changes: 7 additions & 0 deletions src/Chainz/Chainz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Chainz</PackageId>
<Version>1.0.0</Version>
<Authors>LyleDavis</Authors>
<Description>
A generic library implementation of the Middleware/Chain of Responsibility Pattern.
Useful for building and modifying "pipelines" of code.
</Description>
</PropertyGroup>

</Project>

0 comments on commit 5466611

Please sign in to comment.