Skip to content

Commit

Permalink
fix working directory in publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Nov 2, 2024
1 parent a9e8390 commit cf54a6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish-github-pages.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Publish Github Pages
on:
workflow_dispatch:
push:
branches: [main]

Expand All @@ -16,13 +17,14 @@ jobs:
version: 0.13.0

- name: Build
working-directory: website
run: zig build

- name: Upload Artifact
uses: actions/upload-pages-artifact
id: deployment
with:
path: zig-out/www
path: website/zig-out/www


# Deploy job
Expand Down

0 comments on commit cf54a6c

Please sign in to comment.