Fix DNN Search Integration Implementation for DNN 10.x and Beyond #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Build & Deploy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build_and_store_dnn_extensions: | |
runs-on: windows-latest | |
name: Build And Store | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2.0.0 | |
- name: Restore NuGet Packages | |
run: nuget restore './ExpandableTextHtml.sln' | |
- name: Build the solution | |
run: msbuild './ExpandableTextHtml.sln' /p:Configuration=Release; | |
- name: Store Install Package | |
if: github.event_name != 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: installers | |
path: './**/**_install.zip' | |
retention-days: 5 # only need long enough to test/validate |