Skip to content

build(deps): bump EAVFrameworkVersion from 4.2.8 to 4.3.0 #4

build(deps): bump EAVFrameworkVersion from 4.2.8 to 4.3.0

build(deps): bump EAVFrameworkVersion from 4.2.8 to 4.3.0 #4

Workflow file for this run

on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
push:
branches:
- 'feature/**'
jobs:
build:
runs-on: windows-latest
name: Building
steps:
- name: Checkout code base
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Cleaning
run: dotnet clean
- name: Restore NuGet packages
run: dotnet restore
- name: Build solution
run: dotnet build -o ../build/ -c Release --no-restore -m:1
- name: Archive build to artifacts
uses: actions/upload-artifact@v2
with:
name: build
path: |
build/*
retention-days: 5