From 90017469ddf3e2a942b695e91ab2db45e0706069 Mon Sep 17 00:00:00 2001 From: Can Date: Mon, 20 Jan 2025 11:44:27 +0100 Subject: fix: missing workspace directory --- .github/workflows/deploy-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 7a4749f..9549320 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -24,12 +24,12 @@ jobs: run: npm install -g @effekt-lang/effekt - name: Build id: build - run: effekt src/main.effekt --backend js-web --includes . + run: effekt ${{ github.workspace }}/src/main.effekt --backend js-web --includes ${{ github.workspace }} - name: Upload Artifact id: deployment uses: actions/upload-pages-artifact@v3 with: - path: out/ + path: ${{ github.workspace }}/out/ deploy: needs: build -- cgit v1.2.3