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/