Skip to content

Commit

Permalink
Fix path issue?
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherWMM committed Aug 23, 2024
1 parent b4447c2 commit c828514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/github-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ jobs:
if: env.modified_dirs != ''
run: |
for dir in ${{ env.modified_dirs }}; do
mkdir -p build/$(echo "$dir" | awk -F'slides/' '{print $2}')
slidev build --base /lectures/$dir --out /build/$(echo "$dir" | awk -F'slides/' '{print $2}') $dir/slides.md --emptyOutDir
slidev build --base /lectures/$dir --out /build/$(echo "$dir" | awk -F'slides/' '{print $2}') $dir/slides.md
done
- name: Create index.html
Expand Down
2 changes: 1 addition & 1 deletion slides/test/components/Counter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const counter = ref(props.count)
font="mono"
outline="!none"
hover:bg="gray-400 opacity-20"
@click="counter -= 19"
@click="counter -= 20"
>
-
</button>
Expand Down

0 comments on commit c828514

Please sign in to comment.