From 3a618f046ea68904a156318cc81e47e81217191a Mon Sep 17 00:00:00 2001 From: Damien Ostler Date: Sun, 4 Feb 2024 01:07:52 -0500 Subject: [PATCH] fix: path to the docker file to build in the github workflow --- .github/workflows/build-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 95da019..b5bcb1d 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -42,7 +42,7 @@ jobs: - name: Build image env: - dockerfile: ./src/ArtPlatform.API/Dockerfile + dockerfile: ./src/comissions.app.api/Dockerfile docker_image_name: ghcr.io/d4m13n-d3v/art-platform-api run: | docker build --build-arg NUGET_SOURCE=https://nuget.pkg.github.com/data443/index.json --build-arg NUGET_API_KEY=${{ secrets.PACKAGE_TOKEN }} -t ${{ env.docker_image_name }}:${{ env.GitVersion_MajorMinorPatch }} -f ${{ env.dockerfile }} --force-rm .