Skip to content

Bump actions/checkout from 3.5.3 to 4.1.0 #206

Bump actions/checkout from 3.5.3 to 4.1.0

Bump actions/checkout from 3.5.3 to 4.1.0 #206

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build ${{ matrix.framework }}
runs-on: windows-latest
strategy:
matrix:
framework: [netstandard2.1]
steps:
- uses: actions/[email protected]
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0
- name: Restore
run: dotnet restore
- name: Build
run: dotnet publish -c Release -f ${{ matrix.framework }} -o "${{github.workspace}}/Release" "NorthwoodLib"
- name: Upload a Build Artifact for ${{ matrix.framework }}
uses: actions/upload-artifact@v3
with:
name: NorthwoodLib-${{ matrix.framework }}
path: ${{github.workspace}}/Release