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 efe9bde commit 1e61994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
if: env.modified_dirs != ''
run: |
for dir in ${{ env.modified_dirs }}; do
slidev build --base /lectures/$dir $dir/slides.md
mv /lectures/$dir/dist /build/$(echo "$dir" | awk -F'slides/' '{print $2}')
slidev build --base /$dir $dir/slides.md
mv lectures/$dir/dist /build/$(echo "$dir" | awk -F'slides/' '{print $2}') -v
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 -= 20"
@click="counter -= 21"
>
-
</button>
Expand Down

0 comments on commit 1e61994

Please sign in to comment.