diff options
author | Can | 2025-01-20 11:44:27 +0100 |
---|---|---|
committer | Can | 2025-01-20 11:44:27 +0100 |
commit | 90017469ddf3e2a942b695e91ab2db45e0706069 (patch) | |
tree | 84592574dd7bab862653c3fab87e525dffa1509f /.github | |
parent | 50e844a700da043cf0c50bba3a3fceda6e009439 (diff) |
fix: missing workspace directory
Diffstat (limited to '.github')
-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 |