diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..77c2bab --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,11 @@ +on: + push: + tags: + - "v*.*.*" + +jobs: + release: + uses: flmorg/universal-workflows-testing/.github/workflows/dotnet.release.test.yml@main + with: + githubContext: ${{ toJSON(github) }} + secrets: inherit \ No newline at end of file diff --git a/code/Executable/Worker.cs b/code/Executable/Worker.cs index fc5073c..ced72f9 100644 --- a/code/Executable/Worker.cs +++ b/code/Executable/Worker.cs @@ -7,6 +7,7 @@ public class Worker : BackgroundService public Worker(ILogger logger) { _logger = logger; + } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -21,3 +22,5 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) } } } + +