Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Update OrchardCoreContrib.Library Submodule Version #59

Update OrchardCoreContrib.Library Submodule Version

Update OrchardCoreContrib.Library Submodule Version #59

Workflow file for this run

name: Orchard Core Contrib App
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build windows-latest
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: true
token: ${{ secrets.OCC_TOKEN }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.*
- name: Install Dependencies
run: dotnet restore
- name: Build Library
run: dotnet build OrchardCoreContrib.Library --configuration Release
- name: Build App
run: dotnet build --configuration Release --no-restore
- name: Test App
run: dotnet test --no-restore --verbosity normal