Skip to content

1.1.1

1.1.1 #18

Workflow file for this run

name: push
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test
- name: Publish Nuget Panosen.AspNetCore.Authentication.Basic
run: dotnet nuget push Panosen.AspNetCore.Authentication.Basic/bin/Release/Panosen.AspNetCore.Authentication.Basic.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.PANOSEN_NUGET_API_KEY}} --skip-duplicate
- name: Publish Nuget Panosen.AspNetCore.Authentication.Header
run: dotnet nuget push Panosen.AspNetCore.Authentication.Header/bin/Release/Panosen.AspNetCore.Authentication.Header.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.PANOSEN_NUGET_API_KEY}} --skip-duplicate