Skip to content

Fixed example codee #26

Fixed example codee

Fixed example codee #26

Workflow file for this run

name: Latest release
on:
push:
branches:
- 'main'
jobs:
unit_tests:
uses: ./.github/workflows/unit_tests.yml
with:
dotnet-version: '9'
test-project-path: 'src/CyclicalFileWatcher.UnitTests'
deploy_main_nuget:
uses: ./.github/workflows/deploy_nuget.yml
needs: [ unit_tests ]
with:
dotnet-version: '9'
project-name: src/CyclicalFileWatcher
version-fragment: 'feature'
nuget-name: 'CyclicalFileWatcher'
secrets:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}