File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,13 @@ concurrency:
55 group : production
66 cancel-in-progress : false
77
8- on :
9- push :
10- branches :
11- - ' main'
8+ on :
9+ push :
10+ branches :
11+ - ' main'
12+ paths :
13+ - ' src/**'
14+ - ' test/**'
1215
1316# Allows you to run this workflow manually from the Actions tab on GitHub.
1417 workflow_dispatch :
7578
7679 publish-github-release :
7780 name : Publish GitHub release
78- if : ${{ false }} # step disabled with false
81+ if : ${{ false }} # step disabled
7982 runs-on : ubuntu-latest
8083 needs : [build, tests]
8184 steps :
8487 name : solution-build
8588 path : .
8689 - name : Create Release
87- # if: ${{ false }} # step disabled with false
8890 uses : softprops/action-gh-release@v1
89- # if: startsWith(github.ref, 'refs/tags/')
9091 with :
9192 tag_name : release
9293 files : |
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public record CreateUserCommandHandler(ILogger<CreateUserCommandHandler> _logger
5454### Middleware Configuration
5555Also you can configure and execute custom middlewares before or after the command.
5656
57- 1 . Define your middleware by implementing the ` IMiddleware ` interface:
57+ 1 . Define your middleware by implementing the ` IMediatorMiddleware ` interface:
5858
5959``` csharp
6060public class CustomMediatorMiddleware () : IMediatorMiddleware
You can’t perform that action at this time.
0 commit comments