Update Liquid framework for net8, and standardize all cartridge configuration injections to use IOptions. #40
Workflow file for this run
This file contains 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
# CI & CD workflow | |
name: CI/CD - Liquid.Repository.Mongo Cartridge for Liquid Application Framework | |
on: | |
push: | |
branches: [ main, releases/v2.X.X, releases/v6.X.X ] | |
paths: | |
- 'src/Liquid.Repository.Mongo/**' | |
pull_request: | |
branches: [ main, releases/** ] | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'src/Liquid.Repository.Mongo/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
call-reusable-build-workflow: | |
uses: Avanade/Liquid-Application-Framework/.github/workflows/base-liquid-ci-and-cd.yml@main | |
with: | |
component_name: Liquid.Repository.Mongo | |
secrets: | |
sonar_token: ${{ secrets.SONAR_TOKEN_MONGO }} | |
nuget_token: ${{ secrets.PUBLISH_TO_NUGET_ORG }} |