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 e53031a commit b4447c2
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 @@ -57,15 +57,14 @@ jobs:
mkdir -p build
for dir in ${{ env.modified_dirs }}; do
mkdir -p build/$(echo "$dir" | awk -F'slides/' '{print $2}')
echo "$(build/$(echo "$dir" | awk -F'slides/' '{print $2}'))"
done
- name: Build modified slides
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
slidev build --base /lectures/$dir --out /build/$(echo "$dir" | awk -F'slides/' '{print $2}') $dir/slides.md --emptyOutDir
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 -= 18"
@click="counter -= 19"
>
-
</button>
Expand Down

0 comments on commit b4447c2

Please sign in to comment.