Skip to content

Merge branch 'master' of https://github.com/kentico-ericd/xperience-d… #15

Merge branch 'master' of https://github.com/kentico-ericd/xperience-d…

Merge branch 'master' of https://github.com/kentico-ericd/xperience-d… #15

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --no-restore
working-directory: src
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
name: NuGet
path: ./**/*.nupkg