From 89438a693551c717cdfd787f0824de7626590097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Mon, 19 Dec 2022 17:09:46 +0100 Subject: [PATCH] Fix build path --- .github/workflows/github-actions-demo.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 74edacb..114462f 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -20,11 +20,11 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: '7.0.x' - - name: Install dependencies + - name: Restore dependencies run: dotnet restore src/Alma - name: Build - run: dotnet publish -r ${{ matrix.target.runtime }} -o /app/ src/Alma + run: dotnet publish -r ${{ matrix.target.runtime }} -o app/ src/Alma - uses: actions/upload-artifact@v3 with: name: alma-${{ matrix.target.name }} - path: /app/ + path: app/