From ac085631bc0ccf7d2e5616ea216868edbb55fcb8 Mon Sep 17 00:00:00 2001 From: "fabian.wilms" Date: Tue, 9 Apr 2024 14:55:53 +0200 Subject: [PATCH] fix(build): add path to download-artifact step --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 52083486..d47d61c4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -49,6 +49,7 @@ jobs: uses: actions/download-artifact@v4 with: name: library_dist + path: ./dist - name: run semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -72,6 +73,7 @@ jobs: uses: actions/download-artifact@v4 with: name: vitepress_dist + path: ./docs/.vitepress/dist - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4 id: deployment