Skip to content

ignore output foldes #10

ignore output foldes

ignore output foldes #10

Workflow file for this run

name: "release-tag"
on:
push:
branches:
- master
tags:
- 2.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Build
run: dotnet build -c Release
- name: Tests
run: dotnet test -c Release --no-build
- name: Pack artifacts
run: dotnet pack src -c Release --no-build -o artifacts/
- name: Collect artifacts
uses: actions/upload-artifact@v2
with:
name: nupkg
path: artifacts/