Skip to content

Merge pull request #2 from devvelopi/js/release-0.1.1 #5

Merge pull request #2 from devvelopi/js/release-0.1.1

Merge pull request #2 from devvelopi/js/release-0.1.1 #5

Workflow file for this run

name: Publish Packages
on:
push:
branches: [ main ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Install dependencies
run: dotnet restore src/Specificati
- name: Build
run: dotnet build src/Specificati/Specificati.csproj --configuration Release --no-restore
- name: Test
run: dotnet test src/Specificati.sln
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Specificati/Specificati.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}