Skip to content

Commit 6dde9ef

Browse files
committed
fix: Correct working directory paths for API and Blazor container image publishing
1 parent 3b56e3b commit 6dde9ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-and-push-containers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
password: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Publish API container image
33-
working-directory: src/Playground/Playground.Api/Playground.Api.csproj
33+
working-directory: ../src/Playground/Playground.Api/Playground.Api.csproj
3434
run: |
3535
dotnet publish -c Release -p:RuntimeIdentifier=linux-x64 -p:ContainerRepository=${{ github.repository_owner }}/fsh-playground-api -p:ContainerImageTags='${{ github.sha }};latest'
3636
3737
- name: Publish Blazor container image
38-
working-directory: src/Playground/Playground.Blazor/Playground.Blazor.csproj
38+
working-directory: ../src/Playground/Playground.Blazor/Playground.Blazor.csproj
3939
run: |
4040
dotnet publish -c Release -p:RuntimeIdentifier=linux-x64 -p:ContainerRepository=${{ github.repository_owner }}/fsh-playground-blazor -p:ContainerImageTags='${{ github.sha }};latest'
4141

0 commit comments

Comments
 (0)