Skip to content

Commit

Permalink
fix: fix build script for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Oct 29, 2023
1 parent ea204a7 commit b388bef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: pnpm install # or npm ci / yarn install / bun install
- name: Build with VitePress
run: |
pnpm docs:build # or npm run docs:build / yarn docs:build / bun run docs:build
pnpm build # or npm run build / yarn build / bun run build
touch .vitepress/dist/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion components/PostCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<div class="details">
<div class="article">
<h1 class="title">{{ title }}</h1>
<h2 class="title">{{ title }}</h2>
<p v-if="excerpt" class="excerpt">{{ excerpt }}</p>
</div>

Expand Down

0 comments on commit b388bef

Please sign in to comment.