From 8ec1c3978c302cf545b2f362491349beff3a3e9e Mon Sep 17 00:00:00 2001 From: Arwyn <10365998+ArwynFr@users.noreply.github.com> Date: Thu, 25 May 2023 12:05:53 +0200 Subject: [PATCH] patch: fix build target (#2) --- .github/workflows/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index e28db0a..695de29 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -18,7 +18,7 @@ jobs: id: next-version - name: Build and publish docker image - run: dotnet publish --configuration Release /target:PublishContainer /property:Version=${{ steps.next-version.outputs.next-version }} + run: dotnet publish src --configuration Release /target:PublishContainer /property:Version=${{ steps.next-version.outputs.next-version }} - name: Publish GitHub release uses: arwynfr/actions-conventional-versioning@v2