FEAT: add 2nd overload for AddEasyCaching() to support IServiceProvid… #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
- main | |
jobs: | |
build_artifact: | |
name: Build and upload artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build with dotnet | |
run: dotnet build --configuration Release /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln | |
- name: Pack with dotnet | |
run: dotnet pack /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln --version-suffix alpha`date +%Y%m%d%H%M%S` -o /home/runner/work/nugetpkgs -c Release --no-build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: nugetpkgs | |
path: /home/runner/work/nugetpkgs | |
release_nuget: | |
name: Release to Nuget | |
needs: build_artifact | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v1 | |
with: | |
name: nugetpkgs | |
- name: list nugetpkgs | |
run: ls nugetpkgs | |
- name: Release | |
run: | | |
for file in nugetpkgs/*.nupkg | |
do | |
dotnet nuget push $file -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate -s https://www.nuget.org/api/v2/package | |
done |