diff options
-rw-r--r-- | .github/workflows/deploy-pages.yml | 4 |
1 files 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 |