Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# run: npm run build

- name: Install, build, and upload your site output
uses: withastro/action@v0
uses: withastro/action@v4
with:
path: .
node-version: '18.x'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install, build, and upload your site output
uses: withastro/action@v0
uses: withastro/action@v4

deploy:
needs: build
Expand All @@ -29,4 +29,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
dist/
.astro/
node_modules/
pnpm-lock.yaml
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,10 @@ This section explains how to manage the content of the website.

```yaml
---
title: "My Awesome Post"
description: "A short description of the post."
pubDate: "YYYY-MM-DD"
heroImage: "../../assets/images/blog/my-awesome-post.jpg" # Optional
updatedDate: "YYYY-MM-DD" # Optional
draft: false # Optional, set to true to hide the post from the blog index
title: 'My Awesome Post'
description: 'A short description of the post.'
pubDate: 'DD MMM YYYY'
heroImage: '/src/assets/images/blog/2025/my-awesome-post.jpg'
---

## 📰 Introduction
Expand Down
Loading