Skip to content

[spec] setup-dotnet bump to v1.5 #175

[spec] setup-dotnet bump to v1.5

[spec] setup-dotnet bump to v1.5 #175

Workflow file for this run

name: Build Package
on: push
defaults:
run:
working-directory: src
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Code Checkout
uses: actions/checkout@v2
- name: Install DotNet
uses: actions/[email protected]
- name: Restore Dependencies
run: dotnet restore
- name: Build Package
run: dotnet build --no-restore -c Release
- name: Perform Unit Testing
run: dotnet test --no-build -c Release --verbosity normal
- name: Create Package
run: dotnet pack Simplify.Web/Simplify.Web.csproj --no-build -c Release -o ./publish
- name: Create packages artifact
uses: actions/upload-artifact@v2
with:
name: Packages
path: ./src/publish/