Skip to content

Commit

Permalink
CI: path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
parkchamchi committed Oct 16, 2024
1 parent cae0e3f commit b13aaa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
# Copy the built files to the gh-pages branch
cp -r ../src/backend/gs_index/dist/index.html ./
cp -r ../src/backend/gs_index/dist/favicon.ico ./
rm -rf ./GlossySnake/static/*
cp -r ../src/backend/gs_index/dist/GlossySnake/static/* ./GlossySnake/static/
rm -rf ./static/*
cp -r ../src/backend/gs_index/dist/GlossySnake/static/* ./static/
# Commit and push the changes
git add .
Expand Down
2 changes: 1 addition & 1 deletion src/backend/gs_index/src/components/CorpusesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</script>

<template>
<p @click="clearCorpuses">[Clear]</p>
<p @click="clearCorpuses">[Clear data]</p>
<div v-if="remoteSampleFilenames.length > 0">
<h4>Get a sample:</h4>
<p v-for="(filename, index) in remoteSampleFilenames"
Expand Down

0 comments on commit b13aaa1

Please sign in to comment.