diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b9b6bb..2906d1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: mkdir _publish.all - name: Windows x64 Build run: | - dotnet publish -c Release -o ./_publish.win-x64 -r win-x64 --self-contained + dotnet publish ./jwl.console -c Release -o ./_publish.win-x64 -r win-x64 --self-contained cd ./_publish.win-x64 cp ../LICENSE . zip -r9v ../_publish.all/jira-worklogger.${VERSION}.win.x64.zip . @@ -53,7 +53,7 @@ jobs: # cd .. - name: Portable Build run: | - dotnet publish -c Release -o ./_publish.portable --no-self-contained -p:PublishTrimmed=false + dotnet publish ./jwl.console -c Release -o ./_publish.portable --no-self-contained -p:PublishTrimmed=false cd ./_publish.portable cp ../LICENSE . zip -r9v ../_publish.all/jira-worklogger.${VERSION}.portable.zip .