.net6 circleci config file

version: 2.1

orbs:
win: circleci/windows@5.0

jobs:
build:
executor: win/default
working_directory: ~/project
steps:
- checkout
- run:
name: ‘Install Chrome’
command: |
choco install googlechrome -y
- run:
name: ‘Build Stage’
command: |
dotnet build
- run:
name: ‘Test Stage’
command: |
dotnet test
- store_test_results:
path: qase-test-results.xml
- store_artifacts:
path: Qase/bin/Debug/net6.0

workflows:
version: 2
commit:
jobs:
- build
periodical:
triggers:
- schedule:
cron: “1 4,8,12 * * *”
filters:
branches:
only:
- main

jobs:
  - build

this is my job, I have to generate allure config butr don’t know how. Please help me ASAP.