Skip to content

Commit

Permalink
bump to trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherWMM committed Aug 23, 2024
1 parent 5f88a07 commit 1e35545
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/github-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
modified_dirs="$modified_dirs $first_two_parts"
done
# Remove duplicates and store the result in modified_dirs
modified_dirs=$(sort "$temp_file" | uniq | tr '\n' ' ')
# Clean up temporary file
rm "$temp_file"
echo "Modified directories: $modified_dirs"
# Output the modified directories to be used as an environment variable
Expand Down
4 changes: 2 additions & 2 deletions 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 -= 3"
@click="counter -= 4"
>
-
</button>
Expand All @@ -29,7 +29,7 @@ const counter = ref(props.count)
font="mono"
outline="!none"
hover:bg="gray-400 opacity-20"
@click="counter += 3"
@click="counter += 4"
>
+
</button>
Expand Down
2 changes: 1 addition & 1 deletion slides/test/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ layout: intro
# Welcome to Slidev

Presentation slides for developers
<Counter :count="1" m="t-4" />
<Counter :count="2" m="t-4" />

---
layout: intro
Expand Down

0 comments on commit 1e35545

Please sign in to comment.