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 7365d66 commit 185741d
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
slidev build --base /$(echo "$dir" | awk -F'slides/' '{print $2}') $dir/slides.md
echo $(ls -d build/*)
slidev build --base /lectures/$(echo "$dir" | awk -F'slides/' '{print $2}') $dir/slides.md
mv $dir/dist/* build/$(echo "$dir" | awk -F'slides/' '{print $2}') -v
done
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 -= 30"
@click="counter -= 31"
>
-
</button>
Expand Down

0 comments on commit 185741d

Please sign in to comment.